欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mysql 表结构查询的SQL语句

程序员文章站 2022-05-09 17:21:29
...

1、查看表结构

desc student;

mysql 表结构查询的SQL语句

2、查看表的DDL语句

show create table student;

mysql 表结构查询的SQL语句

3、查看列的结构信息

select column_name,data_type,column_comment,column_key,extra,character_maximum_length,is_nullable,column_default
from information_schema.columns 
where table_schema = (select database()) and table_name = 'student' ;

mysql 表结构查询的SQL语句

说明: information_schema.columns 中还有其他的描述字段信息的列,可以根据需求添加。

4、查看表的注释

select table_name,table_comment 
from information_schema.tables 
where table_schema = (select database()) and table_name = 'student' ;

mysql 表结构查询的SQL语句