tags:

views:

76

answers:

2

I have a sql database and am wondering what command you use to just get a list of the table names within that database.

+6  A: 

SHOW tables

15 chars

Ty W
Thanks, I knew it would be simple
Richard
+8  A: 

show tables will help. Here is the documentation.

Henning