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

Elenco di tabelle non vuote nel database MySQL

"schema_informativo" dovrebbe contenere i dettagli pertinenti. Puoi provare

SELECT table_type,
       table_name
FROM information_schema.tables
WHERE table_rows >= 1;

per selezionare da un database selettivo. Puoi anche filtrare per TABLE_SCHEMA :

SELECT table_schema,
       table_type,
       table_name 
FROM information_schema.tables
WHERE table_rows >= 1
  AND TABLE_SCHEMA=?