微信登录

表 - 建表sql - show create table x;

表 - 建表sql - show create table x;

展示建表语句

运行此sql语句前,先知道数据库是否有已经有创建的表格表 - 新建 - create table xxx;,并且可以查看有此表库 - 查看所有表格名 - show tables;

  1. show create table xxx;
  2. show create table t1;
  3. show create table test_table;

mysql展示建表语句