我正在尝试编写一个存储过程,其中包含多个select语句。但是,第二个语句将使用在第一个语句中返回的数据来确定第二个语句。这可能吗?
示例:
(Start loop)
Select ID, Value1, Value2 from table1
if Value 1 = Null then
Select Value2(taken from results of first select) from Table2
end if
(then loop through again)
我知道这有点可怜,但我只需知道是否有可能。
感谢您的帮助