Mysql method to view the created data table: Use SHOW CREATE TABELE to view the data table. The SHOW CREATE TABLE statement can not only view the definition statement when creating the table, but also view the character number of the table. The code is [SHOW CREATE TABLE TB_GRADE;】
##More related free learning recommendations: mysql tutorial (Video)
Mysql method to view the created data table:
Use SHOW CREATE TABELE to view the data tableIn MySQL, the SHOW CREATE TABLE statement can not only view the definition statement when creating the table, but also the character encoding of the table. The basic syntax format of the SHOW CREATE TABLE statement is as follows:SHOW CREATE TABLE 表名;
SHOW CREATE TABLE TB_GRADE;
SHOW CREATE TABLE TB_GRADE\G
The above is the detailed content of How to view the created table in mysql. For more information, please follow other related articles on the PHP Chinese website!