用临时表代替游标实现多条数据的动态更新

 想根据一个结果集来更新表中的字段,也就是这个意思:

update a set a.s=b.ss,a.f=b.ff where id in (select id from b where xxx)

我的第一想法是使用游标。结果发现游标的效率太低了。经高人指点使用了临时表

代码:

ExpandedBlockStart.gif View Code
 1  declare   @t   table (userid  int ,username  nvarchar ( 50 ),commenttime  datetime ,questionid  nvarchar ( 50 ))
 2 
 3  insert   @t (userid,username,commenttime,questionid)
 4  select  userid,username,commenttime,questionid  from  comment c
 5  where  questionid  in (
 6  select  questionId  from   question
 7  where  CreateTime < DATEADD (minute, 1440 , getdate ())
 8  and  IsAutoAdd = 100   and  questionstatus <> 1 )
 9  and   not     exists
10  ( select   1   from  comment  where  questionid = c.questionid  and  commenttime >  c.commenttime);
11 
12 
13       update  question  set  lastcommentuserID = t.userid,
14                          lastcommentuserName = t.username,
15                          LastCommentTime = t.commenttime
16                       from   @t  t
17                           where  question.questionID =t.questionid

18 --set @error=@error+@@error; 

转载于:https://www.cnblogs.com/dzxw2371/archive/2011/07/29/2121027.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值