Here I will explain SQL server query to get list of all tables in database or get list of all the tables in SQL server 2008 database.
Description:
In previous articles I explained can function return multiple values in sql, Query to get database size in SQL Server, Exception handling in SQL Server with try catch, SQL Query to get first & last day of month,difference b/w view and stored procedure in sql and many articles relating to SQL server. Now I will explain how to get all the tables in SQL server 2008 database.
To get all the tables in SQL server 2008 database we need to write the query like as shown below
USE SampleDB SELECT * FROM information_schema.tables OR USE SampleDB SELECT * FROM SYS.tables |
Once we run above query we will get output like as shown below
Demo
No comments:
Post a Comment
Note: only a member of this blog may post a comment.