Mysql
 sql >> Database >  >> RDS >> Mysql

Come visualizzare tutti i nomi delle tabelle da un particolare database MySQL in php

Per ottenere il nome di tutte le tabelle usa:

SELECT table_name FROM information_schema.tables;

Per ottenere il nome delle tabelle da un database specifico utilizzare:

SELECT table_name FROM information_schema.tables where table_schema='<your_database_name>';

Per maggiori dettagli, vedere:http://dev.mysql. com/doc/refman/5.0/en/information-schema.html