Oracle 查询问题

发布于 2024-12-15 15:35:39 字数 485 浏览 0 评论 0原文

可能的重复:
ora-00979 不是 GROUP BY 表达式

我编写了这样的查询:

select employeeid,presenttime,count(latitude)
from  mobilelocation
where presentdate='9-11-2011'
group by employeeid
order by presenttime desc

执行上述查询后,它会显示如下错误消息:

ORA-00979: not a GROUP BY expression.

这里有什么问题?

Possible Duplicate:
ora-00979 not a GROUP BY expression

I wrote a query like this:

select employeeid,presenttime,count(latitude)
from  mobilelocation
where presentdate='9-11-2011'
group by employeeid
order by presenttime desc

Upon executing this above query its showing the error message like this:

ORA-00979: not a GROUP BY expression.

What is the problem here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_畞蕅 2024-12-22 15:35:39

问题是 presenttimeselect 子句中没有聚合函数,但在 group by 子句中却没有。这实际上没有意义:引擎应该如何聚合presenttime?如果不应该,它如何聚合纬度

The problem is that you have presenttime without an aggregate function in the select clause but not in the group by clause. This doesn't really make sense: how should the engine aggregate presenttime? If it should not, how can it aggregate latitude?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文