假设有一个包含200个表的数据库,是否可以快速查看每个表中有多少条记录,如果可能,按记录数下降排序?
答案 0 :(得分:2)
show table status能解决您的问题吗?它有行数?
答案 1 :(得分:2)
SELECT table_name,
table_rows
FROM `information_schema`.`tables`
WHERE table_schema = '<Your Database Name>'
ORDER BY table_rows DESC