Mysql 获取表设计查询语句
程序员文章站
2022-04-13 15:48:53
Mysql 获取表设计查询语句 ......
select column_name 列名, column_type 数据类型, data_type 字段类型, character_maximum_length 长度, is_nullable 是否为空, column_default 默认值, column_comment 备注 from information_schema.columns where -- developerclub为数据库名称,到时候只需要修改成你要导出表结构的数据库即可 table_schema ='yjjy' and -- article为表名,到时候换成你要导出的表的名称 -- 如果不写的话,默认会查询出所有表中的数据,这样可能就分不清到底哪些字段是哪张表中的了,所以还是建议写上要导出的名名称 table_name = 'yjjy_warehouse'