查询所有表以及注释:

select table_name,table_comment from information_schema.tables where table_schema='数据库名称'

查询指定表的所有字段及注释:

select t.table_name as 表名,t.table_comment 表名注释,c.column_name 字段名,c.column_type 字段类型,c.column_comment 字段注释 from information_schema.columns c left join information_schema.tables t on c.table_schema=t.table_schema and c.table_name=t.TABLE_NAME
where c.table_schema='test' and t.table_name in('tableA')

Logo

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。

更多推荐