MSSQL - how to select all table name
In Oracle, you can use statement "select * from tab" for get all table name in your database. But for MSSQL you have to use "select * from sys.Tables" instead of "tab".
Example.
USE nothwinds
SELECT * FROM SYS.TABLES
Example.
USE nothwinds
SELECT * FROM SYS.TABLES