Count MySQL Server DB Tabels

SELECT count(*)
   FROM INFORMATION_SCHEMA.TABLES
   WHERE TABLE_SCHEMA = 'yourDatabaseName';
Vijaysinh Parmar