954,164 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

display list of all tables in database

Hi
I have created many tables in database. Now when i used to create new table that's name may already exists. So, before creating new table i must know which table names are already exists in my database.
And for that i want to display all the tables created in database. As we can dispaly all the columns of a table by using
select * from table_name
So. please tell me such a query by which i can display list of all tables exists in my database.

cutedipti
Light Poster
45 posts since Sep 2008
Reputation Points: 10
Solved Threads: 0
 

Hi Dipti,

You can use the below querry to get the table names in your DB:

select * from tab;
iceman29
Newbie Poster
12 posts since Feb 2008
Reputation Points: 10
Solved Threads: 2
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: