show tables,数据表显示部分

当用 show tables时,由于数据表过多,导致数据表名称无法显示全部

数据库:test

记录部分显示:

select table_name from information_schema.tables where table_schema='test'  order by table_name limit 0,30 ;  

由于我每次只需要查询某一类数据表:

select table_name from information_schema.tables where table_schema='test' and table_name like 'xadmin_comment_audit_%' order by table_name ;  



你可能感兴趣的:(数据库,schema,table)