MySQL 查看表结构简单命令。
在卓资等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站制作、成都网站建设 网站设计制作按需网站开发,公司网站建设,企业网站建设,品牌网站制作,全网营销推广,成都外贸网站制作,卓资网站建设费用合理。
一、简单描述表结构,字段类型desc tabl_name;
显示表结构,字段类型,主键,是否为空等属性,但不显示外键。
二、查询表中列的注释信息
select * from information_schema.columns where table_schema = 'db' #表所在数据库
and table_name = 'tablename' ; #你要查的表
三、只查询列名和注释
select column_name,
column_comment from information_schema.columns where table_schema ='db' and
table_name = 'tablename' ;
四、#查看表的注释
select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'
ps:二~四是在元数据表中查看,我在实际操作中,常常不灵光,不知为什么,有了解的大侠请留印。
五、查看表生成的DDL show create table table_name;
在我第N次忘记如何查看表结构后,在网上查了一下后,看到有好几种查看表结构的方式,总结一下。
以student(sid,sname,birthday,sex)的查看为例。
【方式一】:desc student;
语法:desc 表名;---------------------用于查看表整体结构
【方式二】:describe student;
语法:describe 表名;---------------------用于查看表整体结构;
【方式三】:show columns from student;
语法:show columns from 表名;--------------------------用于查看表整体结构;
【方式四】:show create table student;
语法:show create table 表名;--------------------------用于查看表整体结构;
【方式五】:show full fields from student;
语法:show full fields from 表名;--------------------------------- 用于查看表整体结构;
【方式六】:show fields from student;
语法:show fields from 表名;----------------------------用于查看表整体结构;
【方式七】:desc student sname;
语法:desc 表名 成员名;--------------------------------用于查询表中的一部分;
【方式八】:show index from student;
语法:show index from 表名;------------------------------------用于查看表局部结构;这种显示不是很直观,也不是可以完全显示所有信息。
1.在MySQL数据库中通过show tables命令;查看数据库中所有数据表
2.在MySQL数据库中通过desc tablename;查看表结构