我想要一个查询从 table2 中选择 4 个以上重复的 AccountId,并且在 table1 中具有不同的名称
我希望查询从 table2 中选择 4 个以上的 AccountId 重复项,这些重复项在 table1
中具有不同的名称。
以下是表结构:
table1 | Table2
ID AccountNumber Name | ID AccountNumber AccountID
1 12345 John Jeff | 1 12345 A467T
1 12345 Patrick Jones | 1 12345 A467T
ID
和 AccountNumber
是两个表上相同
- Table1 具有名称
- Table2 具有 AccountID
I want a query to select more than 4 AccountId repetitions from table2 having distinct name in table1
Here are the table structures:
table1 | Table2
ID AccountNumber Name | ID AccountNumber AccountID
1 12345 John Jeff | 1 12345 A467T
1 12345 Patrick Jones | 1 12345 A467T
ID
and AccountNumber
are the same on both tables
- Table1 has Name
- Table2 has AccountID
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是查找具有 4 个以上不同名称的 AccountID 的查询:
如果这不是您要查找的内容,请澄清问题!例如,您可以添加所需的输出。
编辑:在回复您的评论时,您可以使用子查询查询 ID 和号码:
Here's a query to find AccountID's with more than 4 different names:
If that's not what you were looking for, please clarify the question! For examole, you could add desired output.
EDIT: In reply to your comment, you could query the ID and Numbers with a subquery: