Can I get MySQL to return all non-empty tables in a database? Much like \"SHOW TABLES\" but only those that are not empty.
You can run this query via phpMyAdmin:
SELECT * FROM `information_schema`.`TABLES` WHERE `TABLE_ROWS` > 0
will return a list of non-empty tables