Answers for "sql if exists drop temp table"

SQL
6

sql server drop temp table if exists

IF OBJECT_ID('tempdb..#Results') IS NOT NULL DROP TABLE #Results
GO
Posted by: Guest on April-22-2020
4

sql server drop table if exists

IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
Posted by: Guest on April-22-2020

Code answers related to "sql if exists drop temp table"

Code answers related to "SQL"

Browse Popular Code Answers by Language