摘要:
mysql查询语句中的条件判断 case when then else end 1)case等值分析 select case sex when 1 then '男' when 0 then '女' else '没有设置' end as '性别' from xxx 2)case范围分析 select 阅读全文
摘要:
select * from t1 where a = xxx union (distinct, 默认为distinct,会过滤掉重复记录,可指定all,则不会过滤重复记录) select * from t1 where b = xxx 阅读全文
摘要:
mysql语句的 <, >, != 等符号查询都会过滤掉字段值为null的记录,若结果中想要获取到字段值为null的记录,需要单独加上一条判断 where xxx is null or xxx 阅读全文