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