Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solutions/3124. Find Longest Calls/3124.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ SELECT
) AS duration_formatted
FROM RankedCalls
WHERE `rank` <= 3
ORDER BY type, duration DESC, first_name DESC;
ORDER BY type DESC, duration DESC, first_name DESC;