SQL Server tables: what is the difference between @, # and ##?

前端 未结 6 1300
北恋
北恋 2020-11-29 20:22

In SQL Server, what is the difference between a @ table, a # table and a ## table?

6条回答
  •  误落风尘
    2020-11-29 20:35

    if you need a unique global temp table, create your own with a Uniqueidentifier Prefix/Suffix and drop post execution if an if object_id(.... The only drawback is using Dynamic sql and need to drop explicitly.

提交回复
热议问题