Difference between #temptable and ##TempTable?

后端 未结 6 1241
臣服心动
臣服心动 2020-12-02 16:16

What is the difference between #temptable and ##TempTable in SQL Server?

6条回答
  •  旧巷少年郎
    2020-12-02 17:00

    #table refers to a local temporary table - visible to only the user who created it

    ##table refers to a global temporary table - visible to all users

提交回复
热议问题