#辅助自定义代码生成
SELECT DISTINCT
            c.table_name,#表名称
            c.column_name, #字段名称
            c.column_comment, #字段注释
            c.column_type, #字段类型
            c.column_key,#是否主键
            c.is_nullable#是否必填
           ,t.`TABLE_COMMENT`#表注释
           FROM information_schema.columns c 
           LEFT  JOIN information_schema.`TABLES` t
           ON c.`TABLE_NAME`=t.`TABLE_NAME`
           WHERE 
           c.table_schema = '要查询的数据库名称' 
           AND t.`TABLE_SCHEMA`='要查询的数据库名称'
           
           ORDER BY  c.table_name,c.`ORDINAL_POSITION`
           ;