mysql 查询表结构
Posted 张文斌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 查询表结构相关的知识,希望对你有一定的参考价值。
查看表中字段的结构信息
可以用来查看表中字段的注释等,比如
select table_name,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 =\'表名\' ;
去掉 table_name 限定条件,即可查看指定库中的所有表信息
以上是关于mysql 查询表结构的主要内容,如果未能解决你的问题,请参考以下文章