作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在状态列中有不同的值,例如已接收、已退回、已清除,并且我想获取每个状态的总行数
select roll_no as roll,sum(pdc.amount) as amount,count(amount) as given,
stu_profile.name,f_name,scholarship,class_id,batch_id,statuss
from stu_profile
left join pdc on pdc.roll = stu_profile.roll_no
where 1 and class_id != ''
group by roll
最佳答案
select roll_no as roll,sum(pdc.amount) as amount,count(amount) as given,
stu_profile.name,f_name,scholarship,class_id,batch_id,statuss
from stu_profile
left join pdc on pdc.roll = stu_profile.roll_no
where 1 and class_id != ''
group by roll
having amount > 0
and count(amount) = 4
您可以使用和附加多个具有条件
关于mysql - 如何给出多于一个的having子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50837924/
我是一名优秀的程序员,十分优秀!