sql语句条件判断 主要分为查询数据判断 及select 后面字段判断 与where后面条件判断
1.select
主要用到case函数
case具有两种格式。简单case函数和case搜索函数。这两种方式,可以实现相同的功能。简单case函数的写法相对比较简洁,但是和case搜索函数相比,功能方面会有些限制,比如写判定式。还有一个需要注重的问题,case函数只返回第一个符合条件的值,剩下的case部分将会被自动忽略。
--简单case函数
case sex
when '1' then '男'
when '2' then '女’
else '其他' end
--case搜索函数
case when sex = '1' then '男'
when sex = '2' then '女'
else '其他' end
--比如说,下面这段sql,你永远无法得到“第二类”这个结果
case when col_1 in ('a','b') then '第一类' //此处匹配a之后 不会在匹配其余条件
when col_1 in ('a') then '第二类'
else '其他' end
- where
SELECT *
FROM `table`
WHERE IF( `parentID` =1, `plan_id` <10, `plan_id` >500 )
LIMIT 0 , 30
说明:WHERE IF(条件, true执行条件, false执行条件 )
网友评论