sql if exists drop temp table code example
Example 1: sql server drop temp table if exists
IF OBJECT_ID('tempdb..#Results') IS NOT NULL DROP TABLE #Results
GO
Example 2: sql server drop table if exists
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;