if 和case
Posted 水碧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if 和case相关的知识,希望对你有一定的参考价值。
select case ‘O‘
when ‘O‘ then (1*5-6)
when ‘C‘ then (1*5-6)
when ‘EC‘ then (1*5-6)
--else null
--end
--case @loanStatus
when ‘IL‘ then
case when (15-100-80+12)>0 then 15-100 else 0 end
--if (15-100-80+12)>0 then (15-100) else 0 end
end
declare @loanStatus varchar
set @loanStatus=‘O‘
declare @aa int
set @aa=1
if @loanStatus=‘O‘
set @aa=1*5-6
if @loanStatus=‘C‘
set @aa=1*5-6
if @loanStatus=‘EC‘
set @aa=1*5-6
--else null
--end
--case @loanStatus
if @loanStatus=‘IL‘
if(15-100-80+12)>0
set @aa=15-100
else
set @aa=0
select @aa
以上是关于if 和case的主要内容,如果未能解决你的问题,请参考以下文章