仅当所有分组字段上的谓词都为 true 时才选择 GROUP BY 语句
我有一个像这样的表:
-------------
| id | A |
-------------
| 1 | 2 |
| 1 | 5 |
| 1 | 6 |
| 2 | 6 |
| 2 | 9 |
-------------
如何选择所有具有 A 值但不包含某些数字的 id,例如我不想要任何具有 A IN (9,-1,20) 的 id?
谢谢你!
I have a table like this:
-------------
| id | A |
-------------
| 1 | 2 |
| 1 | 5 |
| 1 | 6 |
| 2 | 6 |
| 2 | 9 |
-------------
How can I select all ids that have values of A that don't contain certain numbers, like I don't want any id that have A IN (9,-1,20), for example?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您只需要 ID 1,因为对于 ID 2,A 的值为 IN (9,-1,20),这就是您想要的:
或
Supposing you want only ID 1 because for ID 2 there is a value of A which is IN (9,-1,20) this is what you want:
or