比如在mysql查表名称和表注释:
SELECT TABLE_NAME,TABLE_COMMENT FROM information_schema.TABLES WHERE table_schema=‘数据源库名’
mysql查询表的字段名称和字段注释:
select distinct column_name as column_name,column_comment as column_comment from information_schema.columns where table_schema = ‘数据源库名’ and table_name = ‘表名称’
以上两个操作如何在starrocks数据库中实现查询