作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一张表,其中配偶和 child 链接到主要用户。
+----------------+-------------------+----------+------------------------------+------------------+
| Id | User_ID | Rel_Type | Applno | RelationWith |
+----------------+-------------------+----------+------------------------------+------------------+
| 1234756 | aambu ghosha | self | 201708180921 | aambu ghosha |
| 1235146 | parvati ghosha | spouse | NULL | aambu ghosha |
| 1235147 | ananta ghosha | Children | 201708180921 | aambu ghosha |
| 500787 | anant01011975 | self | 20170811171403999L | anant01011975 |
| 501626 | chandu1988 | children | NULL | anant01011975 |
| 1706064 | atmaram sutar | self | 20170821094537517L | atmaram sutar |
| 1706494 | venu sutar | spouse | 20170821094537517L | atmaram sutar |
在上面的例子中,主申请人“aambu ghosha”是“self”(主申请人)。配偶和子女(parvati 和 ananta)需要被视为单一申请人。
aambu ghosha 3
anant01011975 2
atmaram sutar 2
主申请人的人数应该包括他们的家庭成员。预期结果如上所示。我想这可以通过自加入来实现,但我不确定有多少 child 与主申请人相关联。查找计数的最佳方法是什么?
http://sqlfiddle.com/#!9/30945c/2/0
更新:
我如何自助加入并更新与主申请人关联的申请号?例如第二条记录NULL值应改为201708180921。
最佳答案
假设您只有一个级别的 child ,这会起作用
SELECT userid, count(*)
FROM tab p
JOIN tab ch ON p.user_id = ch.RelationWith
WHERE p.user_id = p.RelationWith
GROUP BY userid
实际上,即使是更简单的查询也会产生您请求的结果
SELECT RelationWith, count(*)
FROM tab
GROUP BY RelationWith
关于mysql - 不知道子select个数时的self join,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45958879/
这个问题在这里已经有了答案: How to get all enum values in Java? (8 个回答) 关闭5年前。 我想创建一个 JComboBox 来处理选择给它的任何 Enum。为
我是一名优秀的程序员,十分优秀!