MySQL查询统计次数简单的语句肯定是这样了:
select a.name,count_neg,count_plus from
(select count(id) as count_plus,name from score2 where score >=60 group by name) a,
(select count(id) as count_neg,name from score2 where score <=60 group by name) b
where a.name=b.name
即必须至少用2个语句。
今天刚好碰到发现mysql支持if,那就创造性的用if来实现吧:
select name, sum(if(score>=60,1,0)),sum(if(score<60,1,0)) from score2 group by name
单个select语句实现MySQL查询统计次数的方法简单吧。
原理就是大于60,就赋值为1,那么sum就是计数了。
先找今天的订单select * from order a where a.c_time >"2016-07-16 00:00:00" and a.c_time <"2016-07-17 00:00:00"
再根据 两个表的关联字段显示user表的会员数据
select * from
(select * from order a where a.c_time >"2016-07-16 00:00:00" and a.c_time <"2016-07-17 00:00:00") a
left jion
user b
on
a.user_id = b.id
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)