mysql数据库表结构导出到Excel中——利用HeidiSQL

时间:2021-07-01 16:50:23   收藏:0   阅读:0

直接上sql

select column_name as 字段类型,
     column_type as 数据类型,
     data_type as 字段类型,
     character_maximum_length as 长度,
     is_nullable as 是否为空,
     column_default as 默认值,
     column_comment as 备注
from
     information_schema.columns
where
     table_schema = 数据库名称 and table_name = 表名称

将“数据可名称”和“表名称”改为自己要导出的数据库名称和表名称即可,结果如下:

技术图片

右键选择“导出表格的行”,跳出下面的会话框

技术图片

搞定!

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!