Mysql method to view the table creation process: execute the [show create table table_name;] statement to view. If you want to view the structure of the data table, you can execute the [desc student;] command.
View the creation process of the table: (show create table table_name;
(Recommended tutorial:mysql video tutorial)
show create table student;
As shown in the picture:
##To view the structure of the data table, the command is relatively simple: (desc table_name;)desc student;Related recommendations:
The above is the detailed content of How to view the table creation process in mysql. For more information, please follow other related articles on the PHP Chinese website!