How to Check if the table exists in SQL Server ?
Do you want to know if the table exists in a in SQL Server ? . Below is a sample query that lets you know if the table exists or not.
How to Check if the table exists in SQL Server ?
Assume that the table name is Employee , run the below query to know if the table exists in the SQL Server or not.
SQL
x
6
1
IF ( EXISTS (SELECT *
2
FROM INFORMATION_SCHEMA.TABLES
3
WHERE TABLE_NAME = 'Employee'))
4
BEGIN
5
SELECT 'AC table found'
6
END
Leave Your Comment