

- Welcome to Geeksww.com
How to see table definition statements in MySQL?
Use the command described in the tutorial to find complete CREATE TABLE SQLs for MySQL tables.
Execute the command below from any MySQL client.
SHOW CREATE TABLE <table name>;
Replace <table name> with your table name
A much faster and simpler approach of doing the same thing requires MySQL Query Browser. From Query browser, right click on the table name and click on 'Copy CREATE statement to Clipboard' OR Ctrl-C. The CREATE table statement will be copied to your clipboard from where you can paste it wherever you want.
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I recommend thoroughy testing on a production-like test system first before moving to production.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, install cairo, php, java, install mysql, laptop, linux, mysql mysql, mysql, source code, mysql initialization, tools, ubuntu
Similar Tutorials:
- How to download and install MySQL on Mac OS X?
- How to rename MySQL DB by moving tables
- MySQL GUI Tools - Query Browser
- MySQL error while dropping databases
- opensource-db-tools - A set of open source tools for MySQL
Tutorials in 'Database Management Systems > MySQL' (more):
- How to set default values for MySQL JSON columns
- How to delete rows in table when PK is referenced in another table
- Unique primary keys(PKs) for MySQL using Redis
- How to rename MySQL DB by moving tables
- How to set innodb_flush_log_at_timeout in MySQL 5.6?
Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.