drop table if exits code example
Example 1: sql drop table if exists
DROP TABLE IF EXISTS dbo.Customers
Example 2: drop table if exists
DROP TABLE IF EXISTS dbo.Scores
Example 3: table drop if exist sql server
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;