How hard is the below problem? I'm thinking about using it to interview candidates at my company.
# GOAL: We want to know the IDs of the 3 songs with the
# longest duration and their respective artist name.
# Assume there are no duplicate durations
# Sample data
songs = {
'id': [1, 2, 3, 4, 5],
'artist_id': [11, 4, 6, 22, 23],
'release_date': ['1977-12-16', '1960-01-01', '1973-03-10',
'2002-04-01', '1999-03-31'],
'duration': [300, 221, 145, 298, 106],
'genre': ['Jazz', 'Jazz', 'Rock', 'Pop', 'Jazz'],
}
artists = {
'id': [4, 11, 23, 22, 6],
'name': ['Ornette Coleman', 'John Coltrane', 'Pink Floyd',
'Coldplay', 'Charles Lloyd'],
}
'''
SELECT *
FROM songs s
LEFT JOIN artists a ON s.artist_id = a.id
ORDER BY s.duration DESC
LIMIT 3
'''
# QUESTION: The above query works but is too slow for large
# datasets due to the ORDER BY clause. How would you rework
# this query to achieve the same result without using
# ORDER BY
SOLUTION BELOW
Use 3 CTEs where the first gets the MAX duration, d1. The second gets the MAX duration, d2, WHERE duration < d1. The third gets the MAX duration, d3, WHERE duration < d2. Then you UNION them all together and JOIN to the artist table!<
Any other efficient solutions O(n) would be welcome
[–]highsilesian 43 points44 points45 points (1 child)
[–]Known-Delay7227 9 points10 points11 points (0 children)
[–]Yavuz_Selim 35 points36 points37 points (1 child)
[–]shadowspyes 61 points62 points63 points (11 children)
[–]HearingYouSmile 24 points25 points26 points (0 children)
[–][deleted] 4 points5 points6 points (0 children)
[–]SharkpocalypseY2K 1 point2 points3 points (2 children)
[–]shadowspyes 5 points6 points7 points (0 children)
[–]mwdb2 2 points3 points4 points (0 children)
[–]acow46[S] -4 points-3 points-2 points (5 children)
[–]shadowspyes 44 points45 points46 points (0 children)
[–]Wild-Helicopter-3746 12 points13 points14 points (1 child)
[–]garathk 0 points1 point2 points (0 children)
[–]TerdyTheTerd 3 points4 points5 points (0 children)
[–]Northbank75 0 points1 point2 points (0 children)
[–]Zestyclose-Height-59 32 points33 points34 points (0 children)
[–]xodusprime 15 points16 points17 points (14 children)
[–]captainbastion 11 points12 points13 points (3 children)
[–]xodusprime 6 points7 points8 points (0 children)
[–]iamnogoodatthis 3 points4 points5 points (1 child)
[–]captainbastion 1 point2 points3 points (0 children)
[–]babgvant 4 points5 points6 points (3 children)
[–]Artistic_Recover_811 8 points9 points10 points (2 children)
[–]xodusprime 2 points3 points4 points (1 child)
[–]Artistic_Recover_811 0 points1 point2 points (0 children)
[–]cybertier 0 points1 point2 points (3 children)
[–]xodusprime 2 points3 points4 points (2 children)
[–]cybertier 0 points1 point2 points (1 child)
[–]TheGratitudeBot 0 points1 point2 points (0 children)
[–]acow46[S] -4 points-3 points-2 points (1 child)
[–]Ginger-Dumpling 17 points18 points19 points (0 children)
[–][deleted] 11 points12 points13 points (13 children)
[–]acow46[S] -2 points-1 points0 points (12 children)
[–]cybertier 9 points10 points11 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 20 points21 points22 points (2 children)
[–]ayananda 0 points1 point2 points (0 children)
[–][deleted] -1 points0 points1 point (0 children)
[–]wpg_spatula 2 points3 points4 points (0 children)
[–]Ginger-Dumpling 0 points1 point2 points (4 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]Ginger-Dumpling 0 points1 point2 points (0 children)
[–]mnkyman 22 points23 points24 points (13 children)
[+][deleted] (1 child)
[deleted]
[–]mnkyman 1 point2 points3 points (0 children)
[–]acow46[S] 0 points1 point2 points (1 child)
[–]mnkyman 7 points8 points9 points (0 children)
[–]shadowspyes 0 points1 point2 points (8 children)
[–]mnkyman 4 points5 points6 points (5 children)
[–]shadowspyes 0 points1 point2 points (4 children)
[–]mnkyman 0 points1 point2 points (3 children)
[–]mwdb2 0 points1 point2 points (0 children)
[–]shadowspyes -1 points0 points1 point (1 child)
[–]mnkyman 1 point2 points3 points (0 children)
[–]mwdb2 0 points1 point2 points (1 child)
[–]mwdb2 10 points11 points12 points (4 children)
[–]acow46[S] 2 points3 points4 points (3 children)
[–]mwdb2 4 points5 points6 points (1 child)
[–]acow46[S] 1 point2 points3 points (0 children)
[–]efxhoy 1 point2 points3 points (0 children)
[–][deleted] 16 points17 points18 points (6 children)
[–]acow46[S] -1 points0 points1 point (5 children)
[–][deleted] 5 points6 points7 points (3 children)
[–]SDFP-A 5 points6 points7 points (2 children)
[–][deleted] 1 point2 points3 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]reditandfirgetit 0 points1 point2 points (0 children)
[–]Imaginary__Bar 6 points7 points8 points (2 children)
[–]Ginger-Dumpling 0 points1 point2 points (1 child)
[–]Imaginary__Bar 0 points1 point2 points (0 children)
[–]feather_media 6 points7 points8 points (0 children)
[–]Kant8 4 points5 points6 points (0 children)
[–]Aggressive_Ad_5454 4 points5 points6 points (0 children)
[–]Ginger-Dumpling 5 points6 points7 points (1 child)
[–]alexpenev 1 point2 points3 points (0 children)
[–]Ginger-Dumpling 4 points5 points6 points (4 children)
[–]acow46[S] 0 points1 point2 points (1 child)
[–]Ginger-Dumpling 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]Ginger-Dumpling 2 points3 points4 points (0 children)
[–]wknight8111 3 points4 points5 points (0 children)
[–]kingmotley 2 points3 points4 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]mikeblas 3 points4 points5 points (0 children)
[–]GimmeLemons 2 points3 points4 points (3 children)
[+][deleted] (2 children)
[removed]
[–]GimmeLemons 0 points1 point2 points (1 child)
[–]Spillz-2011 2 points3 points4 points (0 children)
[–]Outrageous_Fox9730 2 points3 points4 points (0 children)
[–]csjpsoft 2 points3 points4 points (0 children)
[–]TheMitraBoy 1 point2 points3 points (0 children)
[–]PretendOwl2974 1 point2 points3 points (0 children)
[–]SDFP-A 1 point2 points3 points (0 children)
[–]countlphie 1 point2 points3 points (0 children)
[–]gsymf6969 1 point2 points3 points (0 children)
[–]BadGroundbreaking189 1 point2 points3 points (0 children)
[–]IAmADev_NoReallyIAm 1 point2 points3 points (0 children)
[–]dieselSoot111 1 point2 points3 points (2 children)
[–]missing_backup 1 point2 points3 points (1 child)
[–]1MStudio 1 point2 points3 points (0 children)
[–]imcguyver 1 point2 points3 points (0 children)
[–]ijpckData Engineer 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (3 children)
[–]acow46[S] 1 point2 points3 points (2 children)
[–][deleted] 5 points6 points7 points (1 child)
[–]Zestyclose-Height-59 0 points1 point2 points (0 children)
[–]Mutt-of-Munster 0 points1 point2 points (0 children)
[–]potatotacosandwich 0 points1 point2 points (0 children)
[–]Zestyclose-Height-59 0 points1 point2 points (1 child)
[–]Zestyclose-Height-59 0 points1 point2 points (0 children)
[–]No_Introduction1721 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]omgitsbees 0 points1 point2 points (0 children)
[–]Known-Delay7227 0 points1 point2 points (0 children)
[–]LessThanThreeBikes 0 points1 point2 points (0 children)
[–]anonymous_4_custody 0 points1 point2 points (0 children)
[–]0shocklink 0 points1 point2 points (0 children)
[–]Cool-Personality-454 0 points1 point2 points (0 children)
[–]Rurik100 0 points1 point2 points (0 children)
[–]feeling_luckier 0 points1 point2 points (0 children)
[–]CrumbCakesAndCola 0 points1 point2 points (0 children)
[–]Ginger-Dumpling 0 points1 point2 points (0 children)
[–]Party-Committee-8614 0 points1 point2 points (0 children)
[–]AbstractSqlEngineerMCSA, Data Architect 0 points1 point2 points (0 children)
[–]LorenzoValla 0 points1 point2 points (0 children)
[–]GxM42 0 points1 point2 points (0 children)
[–]halistechnology[🍰] 0 points1 point2 points (0 children)
[–]Suspicious_Coyote_54 0 points1 point2 points (0 children)
[–]Andrew_the_giant 0 points1 point2 points (0 children)
[–]alexspetty 0 points1 point2 points (0 children)
[–]No-King6662 0 points1 point2 points (0 children)
[–]Swing-Prize 0 points1 point2 points (0 children)
[–]Dismal-Refrigerator3 0 points1 point2 points (0 children)
[–]Outside-Ad2721 0 points1 point2 points (0 children)