So überprüfen Sie, welche Tabelle Daten in MySQL enthält
mysql> SELECT table_name, table_rows
->FROM INFORMATION_SCHEMA.TABLES
->WHERE TABLE_SCHEMA = 'business';
Anxious Antelope