mysql中使用case when 做where条件筛选表记录
平时我们项目中经常用到 where 字段名=值 来筛选查询结果,但实际也会遇到这样的情况,如果表中某个字段code的值是“_1”结尾的,那么就查全部,否则,根据输入的参数查询。这时 case when 就派上用途了:select * from table_name twhere t.status='1' and (case when instr(right(t.code,2
·
平时我们项目中经常用到 where 字段名=值 来筛选查询结果,但实际也会遇到这样的情况,如果表中某个字段code的值是“_1”结尾的,那么就查全部,否则,根据输入的参数查询。
这时 case when 就派上用途了:
select * from table_name t
where t.status='1' and
(case when instr(right(t.code,2),'_1') > 0 then 1=1
when instr(right(t.code,2),'_1') = 0 then t.name=#{param.name}
end)
and .....
当然,最多的时候一般是使用case when 来作为查询结果的处理
select t.id,t.name,
( case when t.sex='1' then '男' else '女‘ end ) sex
from t
更多推荐
已为社区贡献1条内容
所有评论(0)