Find every track whose UnitPrice is greater than the average UnitPrice across the entire catalog, using a scalar subquery.
Return TrackId, Name, and UnitPrice, ordered by UnitPrice descending (ties broken by TrackId ascending).
| Column | Type |
|---|---|
| TrackId | INTEGER (Primary Key) |
| Name | TEXT |
| UnitPrice | NUMERIC(10,2) |
Ready to take your skills to the next level? Enroll in our comprehensive Data Analyst Career Track to master SQL, Python, Excel, and Power BI.
Run your code to see the result here.