Answers for "how to check temp table exists or not in sql server"

SQL
0

sql server check if temp table exists

IF OBJECT_ID('tempdb..#Results') IS NOT NULL DROP TABLE #Results
Posted by: Guest on March-30-2021
0

check if sql temp table exists

IF OBJECT_ID('tempdb..#Results') IS NOT NULL
    Truncate TABLE #Results
else
    CREATE TABLE #Results
    (
        Company             CHAR(3),
        StepId              TINYINT,
        FieldId             TINYINT,
    )
Posted by: Guest on May-19-2021

Code answers related to "how to check temp table exists or not in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language