i use "SHOW TABLES STATUS" but what i got only number of table in database ?
+1
A:
SELECT count(table_name) FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema = 'database_name'
MatTheCat
2010-10-22 09:46:58
A:
SHOW TABLES
The SHOW TABLES
command will list the tables in your database
Ranhiru Cooray
2010-10-22 09:54:12