这个怎么用case 把数字转换成别的内容啊??
case两种写法,一种是楼上那种写法,另一种是
case when columnName = 0 then '=0'
when columnName = 1 then '=1'
else '...'
end
case columnName
when 0 then '=0'
when 1 then '=1'