How do I list the available tables in a database I'm
querying?
Answer Posted / guest
You can get a list of tables in a database by calling the
INFORMATION_SCHEMA.Tables view like this:
SELECT * FROM information_schema.tables
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is Service Broker in sql server 2012?
How many database files are there in sql server 2000?what are they?
How will you optimize a stored procedure optimization?
Define primary key?
Do you know what is similarity and difference between truncate and delete in sql?
Can we insert data into a view?
How to set database to be single_user in ms sql server?
What is an example of a foreign key?
What is difference between temp table and cte?
What is nested transaction?
Explain nested join?
What is the difference between count () and rowcount ()?
In which files does sql server actually store data?
Explain log shipping?
What does it mean to be in union?