使用navicat快速生成MySQL数据字典
程序员文章站
2022-08-30 23:26:46
1、通过information_schema.COLUMNS表 查询该表可得到所需字段信息 如下图所示: 2、示例 下面截图是示例: SQL语句如下 3、导出Excel 点击导出结果即可导出 ......
1、通过information_schema.columns表
查询该表可得到所需字段信息
select * from information_schema.columns;
如下图所示:
2、示例
下面截图是示例:
sql语句如下
select t.table_schema as 库名, t.table_name as 表名, t.column_name as 字段名, t.column_type as 数据类型, case ifnull(t.column_default,'null') when '' then '空字符串' when 'null' then 'null' else t.column_default end as 默认值, case t.is_nullable when 'yes' then '是' else '否' end as 是否允许为空, t.column_comment as 字段说明 from information_schema.columns t where t.table_schema='feifei' and t.table_name='order_info';
3、导出excel
点击导出结果即可导出
推荐阅读
-
如何使用myisamchk和mysqlcheck工具快速修复损坏的MySQL数据库文件
-
如何快速生成数据库字典(thinkphp5.0)
-
使用navicat快速生成MySQL数据字典
-
使用PreparedStatement对象快速插入MySQL100万条数据
-
使用SQL生成指定数据库的数据字典(MSSQL)
-
Python3自动生成MySQL数据字典的markdown文本的实现
-
MySQL数据库安装和Navicat for MySQL配合使用教程
-
工具 使用mybatis插件工具生成数据库表的映射简单版idea下 mysql
-
MySQL如何利用存储过程快速生成100万条数据详解
-
Python使用dict.fromkeys()快速生成一个字典示例