查看mysql中所有表的数据记录
select table_name,table_rows from tables where TABLE_SCHEMA = \'database name\' order by table_rows desc;
版权声明:本文为learningJAVA原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
select table_name,table_rows from tables where TABLE_SCHEMA = \'database name\' order by table_rows desc;