MySql 查询表结构信息

Posted ainiuniu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySql 查询表结构信息相关的知识,希望对你有一定的参考价值。

select Column_name as 列名,is_nullable as 是否可为空,data_type as 数据类型,column_default as 默认值,case when column_key =‘PRI‘ then ‘主键‘ when column_key =‘UNI‘ then ‘唯一约束‘ when column_key =‘MUL‘ then ‘可以重复‘ else ‘‘ end as 列键,column_comment as 字段说明 from information_schema.columns
where table_schema = ‘datashar‘ #表所在数据库
and table_name = ‘departmentinfo‘ order by column_key desc ; #你要查的表



以上是关于MySql 查询表结构信息的主要内容,如果未能解决你的问题,请参考以下文章

mysql 查询表结构

mysql 查询表结构

mysql怎么查看表结构和注释

mysql怎么查看表结构

Mysql使用一条sql查询出库表结构信息

Mysql使用一条sql查询出库表结构信息