//查詢列注釋及列名稱
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';