Como obter a lista de tabelas no SQLSever?
Usando o seguinte SQL podes obter a lista do SQL Server
Use testDB
SELECT table_name FROM INFORMATION_SCHEMA.TABLES;
table_name
———–
ExceptionLog
Employee
…
Usando o seguinte SQL podes obter a lista do SQL Server
Use testDB
SELECT table_name FROM INFORMATION_SCHEMA.TABLES;
table_name
———–
ExceptionLog
Employee
…