drop table only if it exists sql code example Example: sql server drop table if exists IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;