数据库表基础信息查询
Posted 壶小旭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库表基础信息查询相关的知识,希望对你有一定的参考价值。
select column_name AS 字段名,COLUMN_type as 数据类型, is_nullable AS is_null,column_comment as 注释 from information_schema.columns where table_schema =\'数据库名\' and table_name = \'表名\' ;
以上是关于数据库表基础信息查询的主要内容,如果未能解决你的问题,请参考以下文章