SQL 计算行上给定复合条件的值的数量
我有一个如下表:
User ID Service
1 2
1 3
2 1
2 3
3 5
3 3
4 3
5 2
如何构造一个查询,在其中计算拥有 3 项服务和至少一项其他服务的所有用户 ID?
在上表中,我感兴趣的查询将返回 3,因为用户 ID 1、2 和 3 拥有服务 3 和至少一项其他服务。
谢谢!
I have a table as follows:
User ID Service
1 2
1 3
2 1
2 3
3 5
3 3
4 3
5 2
How could I construct a query where I would count all the user ids that have a service of 3 and at least one other service?
In the above table, the query I'm interested in would return 3 because user ids 1, 2 and 3 have service of 3 and at least one other service.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 MS SQL 中:
In MS SQL:
编辑回应评论:
EDIT In response to comments: