Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL Workbench don't show the result grid when I execute a script

When I execute a script, MySQL Workbench don't show up the result grid for me to view all records. Like a below picture:

My MySQL Workbench is in version 6.3.9.

MySQL Workbench

MySQL Workbench of my friends can show like this:

My friend's MySQL Workbench

Please help me !

like image 691
Thạch Nguyên Avatar asked Oct 18 '17 03:10

Thạch Nguyên


People also ask

How do I hide the result grid in MySQL Workbench?

However, I noticed that you can have another tab open (within MySQL Workbench) where the result grid for the same table remains open, and then you can toggle between the two tabs (the query tab and the result grid tab) by using CTRL + TAB and CTRL + SHIFT + TAB.

How do I enable the output panel in MySQL Workbench?

The Output is located at the bottom of MySQL Workbench. Its select box includes the Action Output , History Output , and Text Output options.

How can I see the result grid in MySQL?

Right-click a result grid subtab to open the context menu, which appears in the figure that follows. The result grid context menu includes: Rename Tab: Customize the name (title) of this tab. Pin Tab: Pin the results tab to the result grid.

How do I change the result grid in MySQL Workbench?

To edit a big table: You can right click the "Send to SQL Editor -> SELECT All Statement". Then before running, this, add a LIMIT 100 in that SELECT or a WHERE condition to filter the rows returned. You can also go to "Preferences -> SQL Editor" and mark the "Limit Rows" checkbox.


2 Answers

After executing the query that you want (ex: SELECT * FROM table) execute the EXPLAIN command

execute command

It will open a new panel and on the right side you can find the option to open the Result Grid.

result grid

like image 133
ifhy Avatar answered Nov 15 '22 06:11

ifhy


UPDATE: Mysqlworkbench 6.3.10 has been released. If you have this problem, you should get the official update.

========================

Looks like this is a known bug in MySQL Workbench on High Sierra, the latest Mac OS.

It is fixed in the next version 6.3.10, but as of 10/17/17 that isn't available.

See the bug report here:

http://bugs.mysql.com/bug.php?id=87714

From the bug report, there is a user build that addresses the issue:

https://drive.google.com/drive/folders/0B2fTesDcrHzVRGVFWEdILWpuaEE?usp=sharing

like image 44
Garr Godfrey Avatar answered Nov 15 '22 07:11

Garr Godfrey