查询mysql 表详情
Posted 韩鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询mysql 表详情相关的知识,希望对你有一定的参考价值。
select column_name,COLUMN_TYPE,IS_NULLABLE,column_comment from information_schema.columns where table_schema =\'information_schema\' and table_name = \'columns\' ;
列明解释 : https://www.cnblogs.com/lqw4/p/4831463.html
以上是关于查询mysql 表详情的主要内容,如果未能解决你的问题,请参考以下文章