Getting List of MS SQL User-Created Tables

To get a list of all tables created by user(s) in a database in MS SQL Server, the following query should be run.

SELECT NAME FROM sys.objects WHERE TYPE='U'


You May Interest

What is a View in SQL Server ?

Disabling All Constants in a Table in MS SQL

What is The Difference Between The Index Seek and Index Scan in S ...

How to Show Line Numbers in MS SQL Server ?

Changing MS SQL Database Name with Query