场景:点赞状态(0:取消点赞,1:点赞)
1.update A set filed=case when fname=0 then 1 else 0 end (使用casewhen)
update a set Fname=case fname when 0 then 1 when 1 then 0 end
2.update A set filed=abs(filed-1)(取绝对值)
3.update table set b=(b+1)%2
场景:点赞状态(0:取消点赞,1:点赞)
1.update A set filed=case when fname=0 then 1 else 0 end (使用casewhen)
update a set Fname=case fname when 0 then 1 when 1 then 0 end
2.update A set filed=abs(filed-1)(取绝对值)
3.update table set b=(b+1)%2
相关课程