嗨,我如何从已执行的查询中进行选择?似乎无法让它工作。
我有以下内容:
declare @query =
'
declare @variable
select name from accounts where @variable=blah blah blah
'
然后我的存储过程下面有以下语句,
select id from table where name in (exec(@query))
我不能使用子查询,因为它给了我一个错误。我认为声明变量不适用于子查询