更新数据表中的字段

来源:互联网 发布:人工智能的应用有哪些 编辑:程序博客网 时间:2024/05/22 01:39

更新T表中的cnt字段,更新规则如下:如果cnt小于11,更新为10,如果cnt大于18更新为15,其他的更新为13(限定:用一条SQL语句实现)

declare @tt  table(cnt int);insert into @tt values (8),(20),(12),(14),(100);select * from @tt;update @tt set cnt=case when cnt in (select cnt from @tt where cnt<11) then 10 when cnt in (select cnt from @tt where cnt>18) then 15 else 13 end;或者 update @tt set cnt=(case when cnt<11 then 10 when cnt>18 then 15 else 13 end);select * from @tt;


0 0
原创粉丝点击