case when then 根据不同条件 查询不同的数据 相当于 if-else if-else
Posted wc_nan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了case when then 根据不同条件 查询不同的数据 相当于 if-else if-else相关的知识,希望对你有一定的参考价值。
Case when a=xx then ‘xx’ when a=’zz’ then ‘zz’ else ‘cc’ end as 别名
相当于 if-else if-else
case when bid.bid_stage=1 then ‘招标阶段‘ when bid.bid_stage=2 then ‘中标阶段‘ else ‘‘ end as bid_stage
以上是关于case when then 根据不同条件 查询不同的数据 相当于 if-else if-else的主要内容,如果未能解决你的问题,请参考以下文章
case when then 根据不同条件 查询不同的数据 相当于 if-else if-else