或写成一个存储过程,或通过CASE来赋值。
create procedure setlevelid
as
update userinfo set levelid=0 where onlineday<6
update userinfo set levelid=1 where onlineday>=10 and onlineday<50
update userinfo set levelid=2 where onlineday>=50 and onlineday<100
update userinfo set levelid=3 where onlineday>=100
go
EXEC SETLEVELID
与执行下面的语句同样效果,只是功能可以更复杂。
update userinfo set levelid =case
when onlineday<6 then 0
when onlineday>=10 and onlineday<50 then 1
when onlineday>=50 and onlineday<100 then 2
when onlineday>=100 then 3
else levelid
end
update userinfo set levelid =case when onlineday<6 then 0
when onlineday>=10 and onlineday<50 then 1
when onlineday>=50 and onlineday<100 then 2
when onlineday>=100 then 3 else levelid end
存储过程可以使用 case when的形式就别用了