Question:
How do I list the available tables in a database I’m querying?
Answer:
You can get a list of tables in a database by calling the INFORMATION_SCHEMA.Tables view like this:
SELECT * FROM information_schema.tables
This returns the name of the current database, the owner, the table name, and the table type for each table in the database. It’s possible to query the system tables directly, but if this gives the information you need, it’s better to use the existing views that come with SQL Server.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.




















