Vous pouvez utiliser INFORMATION_SCHEMA :
SELECT table_name FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema = 'db_name'
ORDER BY table_name ASC
Référence :http://dev.mysql.com/doc /refman/5.0/fr/tables-table.html
Vous pouvez utiliser INFORMATION_SCHEMA :
SELECT table_name FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema = 'db_name'
ORDER BY table_name ASC
Référence :http://dev.mysql.com/doc /refman/5.0/fr/tables-table.html