批量更新SQL语句
一个表有id,name字段,现在要求写一条SQL语句,更新id从1-10的name字段为A,11-20的name为B。请高人指教!...
一个表有id,name字段,现在要求写一条SQL语句,更新id从1-10的name字段为A,11-20的name为B。请高人指教!
展开
3个回答
展开全部
update 表 set name=case when id>1 and id<10 then 'A' else 'B' end
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-09-02
展开全部
批量更新SQL语句
update qc_top set top_id='1' where id=1
update qc_top set top_id='1' where id=2
update qc_top set top_id='1' where id=1
update qc_top set top_id='1' where id=2
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假如你的表为:T
update T
set name=
case when id>1 and id<10
then ‘A'
else ‘B’
update T
set name=
case when id>1 and id<10
then ‘A'
else ‘B’
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询