sql 声明临时表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 声明临时表相关的知识,希望对你有一定的参考价值。
declare @tmpJobs table(Id int,
LocationId int,
CategorySectorId int)
insert into @tmpJobs(Id, LocationId, CategorySectorId)
select intAd_id, locationid, categorysectorid
from fnJobAlertOptionsBySiteID(@SiteID)
--use temporary table
Select tj.LocationId
,tj.CategorySectorId
From @tmpJobs tj
以上是关于sql 声明临时表的主要内容,如果未能解决你的问题,请参考以下文章
SQL Server 中的临时表使用
SQL存储过程多个结果到临时表中
调试 MS SQL 函数时查看临时表的数据
SQL 创建一个临时表#tabletemp 里面有两个字段“cn”和“dt”分别用来存储另一个表的字段名和数据类型。
sql进阶
为啥声明表变量与临时表相比非常慢?