How to view table contents in Mysql Workbench GUI?

后端 未结 7 948
清歌不尽
清歌不尽 2021-02-04 22:44

How can I view table contents in Mysql workbench GUI? I mean, not from command line.

相关标签:
7条回答
  • 2021-02-04 23:49

    Open a connection to your server first (SQL IDE) from the home screen. Then use the context menu in the schema tree to run a query that simply selects rows from the selected table. The LIMIT attached to that is to avoid reading too many rows by accident. This limit can be switched off (or adjusted) in the preferences dialog.

    enter image description here

    This quick way to select rows is however not very flexible. Normally you would run a query (File / New Query Tab) in the editor with additional conditions, like a sort order:

    enter image description here

    0 讨论(0)
提交回复
热议问题