您好,欢迎访问一九零五行业门户网

Mysql 查询列注释及列名称_MySQL

//查询列注释及列名称
select  column_name, column_comment from information_schema.columns where table_schema ='databasename'  and table_name = 'tablename';//查询表注释及表名称
select table_name,table_comment from information_schema.tables  where table_schema = 'image' and table_name ='tablename';
其它类似信息

推荐信息