mysql查询当前数据库的所有表的名称、注释及创建时间等信息
mysql 语句如下
SELECT
TABLE_NAME AS tableName,
TABLE_COMMENT AS tableComment,
CREATE_TIME AS createTime
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = (SELECT DATABASE ()) #where 条件表示查询当前数据库
下面表格各字段含义如下
字段 | 含义 |
Table_catalog | 数据表登记目录 |
Table_schema | 数据表所属的数据库名 |
Table_name | 表名称 |
Table_type | 表类型[system view|base table] |
Engine | 使用的数据库引擎[MyISAM|CSV|InnoDB] |
Version | 版本,默认值10 |
Row_format | 行格式[Compact|Dynamic|Fixed] |
Table_rows | 表里所存多少行数据 |
Avg_row_length | 平均行长度 |
Data_length | 数据长度 |
Max_data_length | 最大数据长度 |
Index_length | 索引长度 |
Data_free | 空间碎片 |
Auto_increment | 做自增主键的自动增量当前值 |
Create_time | 表的创建时间 |
Update_time | 表的更新时间 |
Check_time | 表的检查时间 |
Table_collation | 表的字符校验编码集 |
Checksum | 校验和 |
Create_options | 创建选项 |
Table_comment | 表的注释、备注 |
快乐的吃干货