作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图理解为什么 MySQL 中的这个查询根本不返回任何结果,而我认为它应该返回一行,并将 0 作为列值
select count(ps.id) as totalcount
from tblpresi ps
inner join users_staging.tbluser u on u.id = ps.userid
where ps.id = 3678
group by ps.id
没有“分组依据”的相同查询按预期工作。
有什么想法吗?
最佳答案
不,它不会返回该结果,因为您的查询根本不返回结果(可能没有 ps.id = 3678,或者您的内部联接排除了结果集中的每一行)。
如果您将查询更改为:
select count(1) as totalcount
from tblpresi ps
inner join users_staging.tbluser u on u.id = ps.userid
where ps.id = 3678
group by ps.id
您将得到一行带有 0
的内容。
请记住,如果您的 ps.id
在结果集中是唯一的(我不知道该内部联接
您将返回具有相同 ps.id
的多行),您的 group by
子句不是必需的。
关于MySQL Count 查询与 Group By 不返回任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9226847/
我是一名优秀的程序员,十分优秀!