Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to Get the names of the table in SQL

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The syntax provided in this article works only for SQL Server and MySQL. 

If you want to know how many tables are present in your database and the details of the table like TABLE_SCHEMA, TABLE_TYPE and all. 

Syntax (When we have only single database): 
 

Select * from schema_name.table_name

Syntax (When we have multiple databases): 

Select * from database_name.schema_name.table_name

Example: 

SELECT * FROM INFORMATION_SCHEMA.TABLES 

WHERE 

1. INFORMATION_SCHEMA views allow you to retrieve metadata about the objects within a database. These views can be found in the master database under Views / System Views and be called from any database in your SQL Server instance. 

2. INFORMATION_SCHEMA.TABLES The INFORMATION_SCHEMA.TABLES view allows you to get information about all tables and views within a database. 

Output: 
 

 

My Personal Notes arrow_drop_up
Last Updated : 14 Aug, 2020
Like Article
Save Article
Similar Reads