List Of Table Name In Sql Server

List Of Table Name In Sql Server

SELECT *FROM INFORMATION_SCHEMA.TABLESWHERE
Or
SELECT [name]FROM sys.tables;
table_type = 'BASE TABLE'

0 Comments

jsAdd

Addvetegement01