之前整理的 MySQL写SQL小习惯 ,希望对刚接触MySQL的伙伴们有所帮助!
1.近日有需求是 查询用户表(user)信息倒叙排序,且对某几个用户信息优先显示在最上面
下面是对 用户id为1和407优先显示在上面 倒叙排序
select u.uid,u.name,u.login_number,u.mobile,u.email from user u
order by uid in(1,407)desc
2.统计一张表中各个字段的 总条数
【注意】case里面不可为0 因为select count(0) from bpmn_event_basic 条数为1
select count(null) from bpmn_event_basic 条数为0
select
count(case when (strengthen='1' ) then 1 else null end) currentReinforce,
count(case when (deepen='1' ) then 1 else null end) currentDeepen,
count(0) as currentEvent
from bpmn_event_basic where 1=1