Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想列出Laraval 7中的顶级玩家 我需要在网站上显示两个排名 并且需要2 个查询 1.第一次查询基于数据库表中每个用户的行数(包括要返回的行数) 2.第二次查询基于数据库表中rake字段的总和。(金额必须退还)
我想列出Laraval 7中的顶级玩家 我需要在网站上显示两个排名 并且需要2 个查询
1.第一次查询基于数据库表中每个用户的行数(包括要返回的行数) 2.第二次查询基于数据库表中rake字段的总和。(金额必须退还)
$top_hand_users = DB::table('hand_logs') ->whereIn('result', [ 'win', 'lose' ]) ->groupBy(['user_id']) ->get();