I want All CREATE statements of MySql Tables in 1 query result.
For example, INFORMATION_SCHEMA contains all table names,comments
mysqldump -h localhost -u root -p --no-data --compact some_db
mysqldump -d --compact --compatible=mysql323 ${dbname}|egrep -v "(^SET|^/\*\!)"
How do I use mysqldump to export only the CREATE TABLE commands
Someone just showed me an easier way.