total_time_driven_at_this_tripのDescの注文を取得できないのはなぜですか?Mysqlクエリの個別降順
SELECT DISTINCT (`name`),
MAX(`total_time_driven_at_this_trip`) as trip
FROM `users`
LEFT JOIN `trip_nsws` ON users.id = trip_nsws.user_id
GROUP BY `user_id`
ORDER BY `total_time_driven_at_this_trip` DESC
LIMIT 0 , 30
を使用している原因 - 全く冗長 –