SQL CE 不同聚合

发布于 2024-10-18 12:15:14 字数 146 浏览 4 评论 0原文

SQL CE 是否能够在聚合函数中使用不同的功能? 我需要这样的东西

SELECT count(distinct date) FROM table

这是简化的查询,我已经在原始查询中使用了 GROUP BY 。

Does SQL CE has the ability to use distinct in aggregate functions?
I need something like

SELECT count(distinct date) FROM table

This is simplified query and I already have GROUP BY used in original one.

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

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

发布评论

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

评论(1

油焖大侠 2024-10-25 12:15:14

SQL Server CE(当前版本)不支持 count(distinct)

解决方法是 GROUP BY,这听起来像您正在使用的

select count(*) from (
    select distinct date from tbl
) x

或者如果涉及其他字段

select groupcol, count(*)
from (
    select groupcol, date
    from tbl
    group by groupcol, date
) x
group by groupcol

SQL Server CE (current version) does not support count(distinct)

The workaround is a GROUP BY, which sounds like what you are using

select count(*) from (
    select distinct date from tbl
) x

Or if other fields are involved

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