SyntaxFix
Write A Post
Hire A Developer
Questions
sys.tables
Contains all tables. so exec this query to get all tables with details.
SELECT * FROM sys.tables
or simply select Name from sys.tables to get the name of all tables.
SELECT Name From sys.tables