mysql的if 和 case when

mysql中的条件语句主要有if 和case when。

首先,一个初始表格:felix_test

1. IF(expr1,expr2,expr3):如果第一个条件为True,则返回第二个参数,否则返回第三个

select if(author='Felix', 'yes', 'no') as AU from felix_test;

2. 用case when实现if

select case author when 'Felix' then 'yes' else 'no' end as AU from felix_test;  #用case when实现if

3. case when 多重判断

select case author    #多重判断
when 'Felix' then 'good'
when 'Tom' then 'top'
when 'Bob' then 'down'
else 'do not know' 
end
as AU 
from felix_test;

4. case when 多重判断,另一种形式

select 
case when author='Felix' then 'good'
when author='Tom' then 'top'
when author='Bob' then 'down'
else 'do not know'
end 
as AU 
from felix_test;

5. ifnull 判断是否为空:假如第一个参数为null,则返回第二个参数;否则直接返回第一个参数的值

select ifnull(author,'yes') from felix_test;

 

注:mysql里面的if和case when语句也是可以嵌套的。

#

参考:

https://www.cnblogs.com/dogeLife/p/11288169.html

https://blog.csdn.net/bingguang1993/article/details/83110557

posted on   落日峡谷  阅读(9223)  评论(1编辑  收藏  举报

编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示