我正在尝试将id传递给Sp然后它将首先获取id反对它,然后使用SP或使用UDF获取数据,因为我尝试了
select RequestFrom from UserReqest where RequestTo=10 and IsApprove=0
select * from user where user_ID= (i have to use all five id's here ?)
希望得到你的建议
先谢谢
答案 0 :(得分:3)
SQL中有IN operator可以执行您想要的操作:
select *
from user
where user_ID in (select RequestFrom
from UserReqest
where RequestTo=10
and IsApprove=0)