Sorting Tracks by Length
Easy
5
88.5% Acceptance
Table Used: Track
Objective: Retrieve tracks from the Track
table and sort them based on their duration.
Instructions:
- Retrieve the following columns from the
Track
table:TrackId
Name
Milliseconds
- Sort the results by the
Milliseconds
column to determine the track duration, from shortest to longest. - Display the results in the order of
Milliseconds
.
Expected Output Columns:
TrackId
Name
Milliseconds
Order By: Milliseconds