views:

18

answers:

2

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
A: 
SHOW TABLES

The SHOW TABLES command will list the tables in your database

http://dev.mysql.com/doc/refman/5.1/en/show-tables.html

Ranhiru Cooray