I am using the SHOW CREATE TABLE
command to get a create code for my table. However, I noticed that the create command is missing a few features.
For instance, it doesn't have an IF NOT EXISTS
parameter. It also lists the AUTO_INCREMENT=#
position at the end; which isn't really needed since its an auto increment.
Is there any way to add parameters to the query to fix these issues?