Chcete-li získat názvy všech tabulek, použijte:
SELECT table_name FROM information_schema.tables;
Chcete-li získat názvy tabulek z konkrétní databáze, použijte:
SELECT table_name FROM information_schema.tables where table_schema='<your_database_name>';
Další podrobnosti najdete na:http://dev.mysql. com/doc/refman/5.0/en/information-schema.html