MySql 查询数据库中所有表名, 所占空间,索引空间等
1.MySql 查询数据库中所有表名
https://www.cnblogs.com/BenWong/p/3996061.html
查询数据库中所有表名
select table_name from information_schema.tables where table_schema='csdb' and table_type='base table';
查询指定数据库中指定表的...
原创
2019-06-04 23:17:02 ·
1005 阅读 ·
0 评论