sql 表变量的使用

Posted 飞刀软件

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 表变量的使用相关的知识,希望对你有一定的参考价值。

最近第一次使用sql表变量,感觉挺好用,案例如下:

 

  declare @aaa table(Com_SiteGroupID uniqueidentifier)  --定义表变量

 

  ---往表变量里写数据

insert into @aaa select Com_SiteGroupID from Com_SiteGroup where Com_StructureID [email protected]
union all
select a.Com_SiteBasicID from Com_SiteBasic a inner join Com_SiteGroup b on
a.Com_SiteGroupID=b.Com_SiteGroupID where [email protected]

--读取表变量的数据

insert into #temp select c.ObjectText,count(*) as CountNum from Sip_HiddenDisposalInfo a
inner join Sc_InspectionContent b
on a.Sc_InspectionContentID=b.Sc_InspectionContentId inner join Sc_InspectionItem c
on b.Sc_InspectionItemId=c.Sc_InspectionItemId where c.CheckLevel=2
and a.SiteID in (select * from @aaa)
and a.CreateTime>[email protected] and a.CreateTime<[email protected] group by c.ObjectText

以上是关于sql 表变量的使用的主要内容,如果未能解决你的问题,请参考以下文章

sql: 临时表与表变量的区别

如何在动态 sql 语句中使用表变量?

SQL Server 表变量和临时表的区别

ORACLE 我要在sql语句中使用变量,在后面的表里面使用该变量

T-SQL 之 表变量和临时表

sql: 临时表与表变量的区别