SQL语句修改,如何将下面的insert语句改为update语句。

insert语句:insertintoR_Countselect'News'astype,typeasxtype,sum(casewhenflag=0then1else0... insert语句:
insert into R_Count
select 'News' as type,type as xtype,
sum(case when flag=0 then 1 else 0 end) as "error",
sum(case when flag=1 then 1 else 0 end) as "normal",
sum(case when flag=2 then 1 else 0 end) as "unknown",
GETDATE() as "execTime"
from R_NewsUser_Netbar
group by type
insert结果:
展开
 我来答
tim_spac
推荐于2016-05-07 · TA获得超过3628个赞
知道大有可为答主
回答量:1804
采纳率:100%
帮助的人:2017万
展开全部
-- for M$SQL
update a set
  error = b.error
  , normal = b.normal
  , unknown = b.unknown
  , exectime = getdate()
from r_count as a
join (
  select type,
    sum(case when flag=0 then 1 else 0 end) as "error",
    sum(case when flag=1 then 1 else 0 end) as "normal",
    sum(case when flag=2 then 1 else 0 end) as "unknown",
  from R_NewsUser_Netbar
  group by type
) as b on 1=1
  and 'News' = a.type
  and b.type = a.xtype
抄友灵70
2015-07-06 · TA获得超过183个赞
知道小有建树答主
回答量:441
采纳率:50%
帮助的人:188万
展开全部
你要更新什么啊?
追问
更新除了type和xtype的后4列
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式