欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySQL 程序式写法

程序员文章站 2022-05-19 17:35:40
...
1. IF
if (condition, result1, result2)
IF(expr1 is not null, expr1, expr2) 等价于 ifnull(expr1, expr2)
   ifnull()效率胜过if()

2. Case
case
when day(MaxDate)<=10 then 1
when day(MaxDate)<=20 then 2
else 3
end