MySQL查看表结构简单命令

简单描述表结构,字段类型
desc 表名称;
显示表结构,字段类型,主键,是否为空等属性,但不显示外键。

查询表中列的注释信息
select * from information_schema.columns
where table_schema='数据库名称'
and table_name='表名称';

只查询列名和注释
select column_name,column_comment
from information_schema.columns
where table_schema='数据库名称'
and table_name='表名称';

查看表的注释
select table_name,table_comment
from information_schema.tables
where table_schema='数据库名称'
and table_name='表名称';

查看表生成的DDL
show create table 表名称;
这个命令虽然显示起来不是太容易看, 这个不是问题可以用\G来结尾,使得结果容易阅读;该命令把创建表的DDL显示出来,于是表结构、类型,外键,备注全部显示出来了。

原文

你可能感兴趣的:(MySQL查看表结构简单命令)