***相当于java中的switch…case…***.
select name,
case name when 1 then ‘1’ //如果name=1,数字列为1
when 2 then ‘2’
else 3
end as 数字
from 表名
相当于java中的if…else
select name,
case when 1 then 1
when 2 then 2
else 3
end as 数字
from 表名
***相当于java中的switch…case…***.
select name,
case name when 1 then ‘1’ //如果name=1,数字列为1
when 2 then ‘2’
else 3
end as 数字
from 表名
相当于java中的if…else
select name,
case when 1 then 1
when 2 then 2
else 3
end as 数字
from 表名