同一个存储过程中处理上条sql语句查询出来的数据集
一个存储过程中第一条sql查询出3条数据的id接下来,需要在下一条sql语句中的where条件中分别使用这3个id,不知道怎样提起出来。...
一个存储过程中第一条sql 查询出 3条数据的id
接下来,需要在下一条sql语句中 的 where条件中 分别使用这3个id,不知道怎样提起出来。 展开
接下来,需要在下一条sql语句中 的 where条件中 分别使用这3个id,不知道怎样提起出来。 展开
2个回答
展开全部
使用临时表。
如:select IDX,* into #tempexample from table1
下面你就可以任意使用这个三个ID了。
比如:
Update table2 set table2.name = #tempexample.name where table2.IDX=tempexample.IDX
如:select IDX,* into #tempexample from table1
下面你就可以任意使用这个三个ID了。
比如:
Update table2 set table2.name = #tempexample.name where table2.IDX=tempexample.IDX
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |