我正在创建玩家徽章的排名,而且我坚持使用db查询。
表格: user(id),club(id),club_user(user_id,club_id),徽章(user_id)
我想获得指定俱乐部的所有用户名单(例如club.id = 1),以及他们拥有的徽章数量。结果应按徽章数量排序。
如何创建这种数据库查询? Eloquent可以吗?
是否应该使用db::table
和join
?
Table user
id|name
1|John
2|Robert
3|Kate
Table club
id|name
1|Sunshine Club
2|Example Club
Table club_user
user_id|club_id
1|1
2|1
3|2
Table bagdes
id|name|user_id|club_id
1|Champion|1|1
2|Some badge|1|1
3|example|2|1
4|Gold Badge|3|2
所以如果我想获得俱乐部1的用户排名,按徽章计数排序。
我应该得到:
name|number of badges
John|2 (badges)
Robert|1 (badge)
Kate is not it this club.
答案 0 :(得分:1)
试试这个
select user.name ,user.id as userid , (select count(bagdes.id) from
bagdes where user_id= userid)
as total_badges from user inner join club_user on
user.id = club_user.user_id where club_user.club_id = 1
你会得到你的输出。
答案 1 :(得分:0)
最后我使用这个DB :: table查询:
$users = DB::table('users')
->select('users.name', DB::raw('count(*) as badges'))
->join('badges', 'badges.user_id', '=', 'users.id')
->where('badges.club_id', 1)
->groupby('users.id')
->orderBy('badges', 'DESC')
->get();