Brug:
for at få navnet på alle tabellerSELECT table_name FROM information_schema.tables;
For at få navnet på tabellerne fra en bestemt database, brug:
SELECT table_name FROM information_schema.tables
WHERE table_schema = 'your_database_name';
Brug nu denne forespørgsel for at besvare det oprindelige spørgsmål:
INSERT INTO table_name
SELECT table_name FROM information_schema.tables
WHERE table_schema = 'your_database_name';
For flere detaljer se:http://dev.mysql. com/doc/refman/5.0/en/information-schema.html