Is there a way to query the DB to find out how many rows there are in all the tables?
i.e.
table1 1234 table2 222 table3 7888
Hope you can advise
SELECT TABLE_NAME, TABLE_ROWS FROM `information_schema`.`tables` WHERE `table_schema` = 'YOUR_DB_NAME';
1.4m articles
1.4m replys
5 comments
57.0k users