SELECT COUNT(DISTINCT `table_name`) FROM `information_schema`.`columns` WHERE `table_schema` = 'your_db_name'
restituirà il numero effettivo di tabelle (o viste) nel tuo DB. Se quel numero è 0, non ci sono tabelle.
SELECT COUNT(DISTINCT `table_name`) FROM `information_schema`.`columns` WHERE `table_schema` = 'your_db_name'
restituirà il numero effettivo di tabelle (o viste) nel tuo DB. Se quel numero è 0, non ci sono tabelle.