mysql 获取所有的列名注释和类型
mysql 获取所有的列名注释和类型
select COLUMN_NAME from information_schema.COLUMNS where table_name = '你的表名';
建议这一条,可以加上数据库名的条件会更加准确。这个会列出所有的属性
select * from information_schema.COLUMNS where table_name = 'template' and table_schema = '你的数据库连接名';