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 ;
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇: 深入理解 Session 与 Cookie
