views:

37

answers:

1

i want to retrieve table name from database plz suggest me query. i am using phpmyadmin database.

+4  A: 

You can make use of MySQL show tables as:

SHOW TABLES FROM db_name

Output of SHOW TABLES contains a single column of table names.

codaddict
hey thanks dude
Pratikg88