Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLORDER BY and LIMITSingle-choice MCQ

A `posts` table is sorted with the query below. What does the second sort key do?

SELECT title, views FROM posts ORDER BY views DESC, title ASC;