how to check how many tables in a database in mysql code example
Example 1: count of tables in database mysql
SELECT count(*)
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'database_name'
Example 2: how to check tables in mysql
mysql -u user -p