sql查询将列里面的值替换为别的值但是实际值不变
数据库有一张表incident里面有字段prioritypriority有值1,2,3,4如何将priority的值查询替换为紧急,高,中,低但是priority实际值不...
数据库有一张表incident 里面有字段priority
priority有值1,2,3,4如何将priority的值查询替换为紧急,高,中,低 但是priority实际值不变。只是在界面显示为紧急,高,中,低。
例如:priority priority 显示结果
1 紧急
2 高
3 中
4 低 展开
priority有值1,2,3,4如何将priority的值查询替换为紧急,高,中,低 但是priority实际值不变。只是在界面显示为紧急,高,中,低。
例如:priority priority 显示结果
1 紧急
2 高
3 中
4 低 展开
2个回答
展开全部
select priority ,'priority显示结果'= case when priority=1 then '紧急'
when priority =2 then '高'
when priority =3 then '中'
when priority =4 then '低'
else '错误'
end
from incident
when priority =2 then '高'
when priority =3 then '中'
when priority =4 then '低'
else '错误'
end
from incident
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select priority,
(case priority when 1 then '紧急' when 2 then '高' when 3 then '中' when 4 then '低' else '其他' end ) from incident
(case priority when 1 then '紧急' when 2 then '高' when 3 then '中' when 4 then '低' else '其他' end ) from incident
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |