我有四个包含一些字段的表
1. user(id, name, email, password, .....)
2. policy1(id, userid, ....)
3. policy2(id, userid, ....)
4. policy3(id, userid, ....)
现在很清楚,用户的主键 (id)
是其他三个表中的外键。
我想针对包含该表中的用户的每个用户获取表的总数id
。
例如:
user id 1 has entry in any two tables,
user id 2 has entry in three tables,
user id 3 has entry in any single table
结果应该像
id total
1 2
2 3
3 1
我尝试使用Left Join
,但我无法获得预期的结果。