You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select u.name,ifnull(sum(r.distance),0)as travelled_distance from Users u left join Rides r on u.id=r.user_id group by r.user_id order by travelled_distance desc, u.name;