Return All Tables Name from a SQL Server Data Base

SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='BASE TABLE'

 
 
 
Image 1.