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 are the types of indexes?
What do you understand by SQL*Net?
How do I completely remove sql server instance?
What is index in an assignment?
Explain the phases a transaction has to undergo?
How many partitions a clustered index has by default in sql server 2012?
How to stop log file growing too big?
Which trace flags are enabled in sql server?
What is an execution plan?
Define union, union all, minus, intersect?
What is acid properties?
What is the use of nvl work?
What are the steps to take to improve performance of a poor performing query? : sql server database administration
What is triggers in ms sql server?
Explain the usage of floor function in sql server.