查看表信息的sql语句 Mysql怎样查看某个表的建表语句导出建表sql语句?
Mysql怎样查看某个表的建表语句导出建表sql语句?假设表名是mytable,创建表的语句是:MySQL> show create table mytable view table field
Mysql怎样查看某个表的建表语句导出建表sql语句?
假设表名是mytable,创建表的语句是:MySQL> show create table mytable view table field definition:Method 1,MySQL> desc mytable Method 2,MySQL> use informationschemamysql> select*from columns where tableuname=“mytable”