我想将值存储到select查询中声明的变量,但问题是我的select查询返回多行。见下面的例子
select Col1
from Table1 where Col1 NOT IN (select Col1 from Table2)
and Col3 >=8
------------------
result
73
74
declare @temp1 int
declare @temp2 int
I essentially want @temp1 to hold 73 and @temp2 hold 74 and so fort...
任何有关如何实现这一目标的想法都会有很大帮助。 如果您需要更多解释,请与我们联系。
提前致谢, GAGAN