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

这两个case when end的条件语句查询结果为啥不一致

CASE WHEN用法

MySQL case when then 的使用方法

mysql复杂查询

case when then 中判断null的方法