Yaz
Yaz

Reputation: 55

How to view exact SQL syntax entered after entering

I have created several tables and inserted data into the tables but I am now looking for a way to view the syntax that I entered to create each of the tables etc. Is this possible? I am using MySQL Workbench and have closed and re-opened the program several times throughout.

Upvotes: 0

Views: 29

Answers (1)

Damian Mąsior
Damian Mąsior

Reputation: 164

SQL:

show create table YourTable;

Upvotes: 1

Related Questions