I am rolling back to MySQL GUI Tools\' MySQL Query Browser since I can\'t find the shortcut to get a table\'s creation script in MySQL Workbench.
U can use MySQL Proxy and its scripting system to view SQL queries in realtime in the terminal.
Solution for MySQL Workbench 6.3E
Or Check https://dev.mysql.com/doc/workbench/en/wb-admin-export-import-management.html
1 use command
show create table test.location
right click on selected row and choose Open Value In Viewer
select tab Text
Right-click on the relevant table and choose either of:
That seems to work for me.
Not sure if I fully understood your problem, but if it's just about creating export scripts, you should forward engineer to SQL script - Ctrl + Shift + G or File -> Export -> first option.