SELECT COUNT(DISTINCT `table_name`) FROM `information_schema`.`columns` WHERE `table_schema` = 'your_db_name'
zal het werkelijke aantal tabellen (of views) in uw DB retourneren. Als dat getal 0 is, zijn er geen tabellen.
SELECT COUNT(DISTINCT `table_name`) FROM `information_schema`.`columns` WHERE `table_schema` = 'your_db_name'
zal het werkelijke aantal tabellen (of views) in uw DB retourneren. Als dat getal 0 is, zijn er geen tabellen.