sql-server 2008中以下3个有什么区别?
#Table_name
##Table_name
@Table_name
来自MSDN:Database Identifiers(重新格式化以更好地适应问题)。
标识符开头的某些符号在 SQL Server 中具有特殊含义。
看到这个问题
https://stackoverflow.com/a/64891/886591
#table = temp table tied to the spid
##table = global temp table
@table = table variable
#table_name -本地临时表
##table_name -全局临时表
@Table_name -表变量 - 它也仅在用户会话期间存在
Temp Table and Table Variable
— 两者都是在 TempDB 而不是内存中创建的