Check if a temporary table exists and delete if it exists before creating a temporary table

前端 未结 15 753
忘掉有多难
忘掉有多难 2020-11-29 14:13

I am using the following code to check if the temporary table exists and drop the table if it exists before creating again. It works fine as long as I don\'t change the colu

15条回答
  •  一向
    一向 (楼主)
    2020-11-29 14:57

    This worked for me,

    IF OBJECT_ID('tempdb.dbo.#tempTable') IS NOT NULL 
    DROP TABLE #tempTable; 
    

    Here tempdb.dbo(dbo is nothing but your schema) is having more importance.

提交回复
热议问题