Using the SQL below one can list SQL Server tables
Use testDB
SELECT table_name FROM INFORMATION_SCHEMA.TABLES;
table_name
———–
ExceptionLog
Employee
…
Using the SQL below one can list SQL Server tables
Use testDB
SELECT table_name FROM INFORMATION_SCHEMA.TABLES;
table_name
———–
ExceptionLog
Employee
…