mysql for navicat导出表结构(word文档)
解决方法:
1.在mysql for navicat的查询窗口中执行以下sql,替换一下数据库名和表名
select column_name as '字段名',
column_comment as '描述',
column_type as '数据类型',
column_key as '键',
is_nullable as '是否为空',
column_default as '默认值'
from information_schema.columns where table_schema='数据库名' and table_name='要导出的表名';
2.在查询窗口中点击“Run”后再点击“Run”后面的“Export”
3.选择“Word file (*.doc)”
4.Export to中选择保存文件的路径,输入文档名字,一直点击下一步后Start就开始导出word