SQL CE 不同聚合
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server CE(当前版本)不支持 count(distinct)
解决方法是 GROUP BY,这听起来像您正在使用的
或者如果涉及其他字段
SQL Server CE (current version) does not support count(distinct)
The workaround is a GROUP BY, which sounds like what you are using
Or if other fields are involved