组使用一个查询到另一个查询的数据
我有一个桌子,如下所示。它是使用查询创建的 -
NPI Other_Columns
123 Several_Other_Columns
456 Several_Other_Columns
如何从此表中获取每个NPI并获得它们出现在另一个表中的次数?另一个表的结构就像 -
Claim_id NPI1 NPI2 NPI3 NPI4 NPI5 NPI6 NPI7 NPI8
如果在第一个表中的NPI,请在第二个表中的任何字段中显示,我们要计算该声明。
I have a table that looks like below. It is created using a query -
NPI Other_Columns
123 Several_Other_Columns
456 Several_Other_Columns
How do I take every NPI from this table and get a count of the number of times they appeared in another table? The structure of the other table is like so -
Claim_id NPI1 NPI2 NPI3 NPI4 NPI5 NPI6 NPI7 NPI8
If NPIs in the first table, show in any field in the second table, we want to count that claim.s
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个任务是加入
,它为您带来了所有的加入。
现在计算这些..
The first task is the join
that gets you all the things joined.
Now count those..