Skip to content

Instantly share code, notes, and snippets.

@nanotaboada
Created January 1, 2024 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanotaboada/bd62dcd607074498927fdd81b24250e9 to your computer and use it in GitHub Desktop.
Save nanotaboada/bd62dcd607074498927fdd81b24250e9 to your computer and use it in GitHub Desktop.
SQLite3 DDL for a mid-sized collection of Songs. The rank matches Rolling Stone's list of The 500 Greatest Songs of All Time.
BEGIN TRANSACTION;
DROP TABLE IF EXISTS "songs";
CREATE TABLE IF NOT EXISTS "songs" (
"rank" INTEGER NOT NULL,
"title" TEXT NOT NULL,
"artist" TEXT NOT NULL,
"album" TEXT,
"year" INTEGER NOT NULL,
PRIMARY KEY("rank")
);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (1,'Like a Rolling Stone','Bob Dylan','Highway 61 Revisited',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (2,'(I Can''t Get No) Satisfaction','The Rolling Stones','Out of Our Heads',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (3,'Imagine','John Lennon','Imagine',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (4,'What''s Going On','Marvin Gaye','What''s Going On',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (5,'Respect','Aretha Franklin','I Never Loved a Man the Way I Love You',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (6,'Good Vibrations','The Beach Boys','Smiley Smile/Wild Honey',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (7,'Johnny B. Goode','Chuck Berry','The Anthology',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (8,'Hey Jude','The Beatles','Hey Jude',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (9,'Smells Like Teen Spirit','Nirvana','Nevermind',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (10,'What''d I Say','Ray Charles','What''d I Say',1959);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (11,'My Generation','The Who','My Generation',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (12,'A Change Is Gonna Come','Sam Cooke','Portrait of a Legend 1951-1964',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (13,'Yesterday','The Beatles','Help!',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (14,'Blowin'' in the Wind','Bob Dylan','The Freewheelin'' Bob Dylan',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (15,'London Calling','The Clash','London Calling',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (16,'I Want to Hold Your Hand','The Beatles','Meet the Beatles!',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (17,'Purple Haze','The Jimi Hendrix Experience','Are You Experienced?',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (18,'Maybellene','Chuck Berry','The Anthology',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (19,'Hound Dog','Elvis Presley',' Elvis 30 #1 Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (20,'Let It Be','The Beatles','Let It Be',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (21,'Born to Run','Bruce Springsteen','Born to Run',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (22,'Be My Baby','The Ronettes','The Best of the Ronettes',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (23,'In My Life','The Beatles','Rubber Soul',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (24,'People Get Ready','The Impressions','The Very Best of the Impressions',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (25,'God Only Knows','The Beach Boys','Pet Sounds',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (26,'(Sittin'' On) The Dock of the Bay','Otis Redding','The Dock of the Bay',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (27,'Layla','Derek and the Dominos','Layla And Other Assorted Love Songs',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (28,'A Day in the Life','The Beatles','Sgt. Pepper''s Lonely Hearts Club Band',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (29,'Help!','The Beatles','Help!',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (30,'I Walk the Line','Johnny Cash','The Complete Original Sun Singles',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (31,'Stairway to Heaven','Led Zeppelin','Led Zeppelin IV',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (32,'Sympathy for the Devil','The Rolling Stones','Beggars Banquet',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (33,'River Deep - Mountain High','Ike & Tina Turner','Proud Mary: The Best of Ike and Tina Turner',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (34,'You''ve Lost That Lovin'' Feelin''','The Righteous Brothers','Anthology 1962-1974',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (35,'Light My Fire','The Doors','The Doors',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (36,'One','U2','Achtung Baby',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (37,'No Woman, No Cry','Bob Marley & The Wailers','Natty Dread',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (38,'Gimme Shelter','The Rolling Stones','Let It Bleed',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (39,'That''ll Be the Day','Buddy Holly & The Crickets','Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (40,'Dancing in the Street','Martha and the Vandellas','The Ultimate Collection',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (41,'The Weight','The Band','Music From Big Pink',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (42,'Waterloo Sunset','The Kinks','Something Else By The Kinks',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (43,'Tutti-Frutti','Little Richard','The Georgia Peach',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (44,'Georgia On My Mind','Ray Charles','Ultimate Hits Collection',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (45,'Heartbreak Hotel','Elvis Presley','Elvis 30 #1 Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (46,'Heroes','David Bowie','Heroes',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (47,'All Along the Watchtower','The Jimi Hendrix Experience','Electric Ladyland',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (48,'Bridge Over Troubled Water','Simon & Garfunkel','Bridge Over Troubled Water',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (49,'Hotel California','Eagles','Hotel California',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (50,'The Tracks Of My Tears','Smokey Robinson and the Miracles','Going to a Go-Go',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (51,'The Message','Grandmaster Flash and the Furious Five','The Best of Sugar Hill Records',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (52,'When Doves Cry','Prince and The Revolution','Purple Rain',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (53,'When A Man Loves A Woman','Percy Sledge','It Tears Me Up: The Best of Percy Sledge',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (54,'Louie Louie','The Kingsmen','The Best of the Kingsmen',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (55,'Long Tall Sally','Little Richard','The Georgia Peach',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (56,'Anarchy in the U.K.','Sex Pistols','Never Mind the Bollocks, Here''s the Sex Pistols',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (57,'A Whiter Shade of Pale','Procol Harum','Greatest Hits',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (58,'Billie Jean','Michael Jackson','Thriller',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (59,'The Times They Are a-Changin''','Bob Dylan','The Times They Are A-Changin''',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (60,'Let''s Stay Together','Al Green','Let''s Stay Together',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (61,'Whole Lotta Shakin'' Going On','Jerry Lee Lewis','Original Sun Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (62,'Bo Diddley','Bo Diddley','His Best: The Chess 50th Anniversary Collection',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (63,'For What It''s Worth','Buffalo Springfield','Buffalo Springfield',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (64,'She Loves You','The Beatles','The Beatles 1',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (65,'Sunshine of Your Love','Cream','Disraeli Gears',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (66,'Redemption Song','Bob Marley & The Wailers','Uprising',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (67,'Jailhouse Rock','Elvis Presley','Elvis 30 #1 Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (68,'Tangled Up in Blue','Bob Dylan','Blood on the Tracks',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (69,'Crying','Roy Orbison','For the Lonely: 18 Greatest Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (70,'Walk On By','Dionne Warwick','The Dionne Warwick Collection: Her All-Time Greatest Hits',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (71,'Papa''s Got a Brand New Bag','James Brown','50th Anniversary Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (72,'California Girls','The Beach Boys','Sounds of Summer: The Very Best of the Beach Boys',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (73,'Superstition','Stevie Wonder','Talking Book',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (74,'Summertime Blues','Eddie Cochran','Somethin'' Else',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (75,'Whole Lotta Love','Led Zeppelin','Led Zeppelin II',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (76,'Strawberry Fields Forever','The Beatles','Magical Mystery Tour',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (77,'Mystery Train','Elvis Presley','Sunrise',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (78,'I Got You (I Feel Good)','James Brown','James Brown 50th Anniversary Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (79,'Mr. Tambourine Man','The Byrds','Mr. Tambourine Man',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (80,'You Really Got Me','The Kinks','Kinks',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (81,'I Heard It Through the Grapevine','Marvin Gaye','Every Motown Hit',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (82,'Blueberry Hill','Fats Domino','The Fats Domino Jukebox',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (83,'Norwegian Wood (This Bird Has Flown)','The Beatles','Rubber Soul',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (84,'Every Breath You Take','The Police','Synchronicity',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (85,'Crazy','Patsy Cline','Patsy Cline''s Greatest Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (86,'Thunder Road','Bruce Springsteen','Born to Run',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (87,'Ring of Fire','Johnny Cash','The Man in Black: His Greatest Hits',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (88,'My Girl','The Temptations','The Temptations Sing Smokey',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (89,'California Dreamin''','The Mamas & The Papas','If You Can Believe Your Eyes And Ears',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (90,'In The Still Of The Nite','The Five Satins','The Five Satins: Their Greatest Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (91,'Suspicious Minds','Elvis Presley','Elvis 30 #1 Hits',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (92,'Blitzkrieg Bop','Ramones','Ramones',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (93,'I Still Haven''t Found What I''m Looking For','U2','The Joshua Tree',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (94,'Good Golly','Little Richard','The Georgia Peach',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (95,'Blue Suede Shoes','Carl Perkins','Original Sun Greatest Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (96,'Great Balls of Fire','Jerry Lee Lewis','Original Sun Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (97,'Roll Over Beethoven','Chuck Berry','The Anthology',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (98,'Love And Happiness','Al Green','I''m Still in Love With You',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (99,'Fortunate Son','Creedence Clearwater Revival','Willy And The Poor Boys',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (100,'Crazy','Gnarls Barkley','St. Elsewhere',2006);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (101,'You Can''t Always Get What You Want','The Rolling Stones','Let It Bleed',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (102,'Voodoo Child (Slight Return)','The Jimi Hendrix Experience','Electric Ladyland',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (103,'Be-Bop-A-Lula','Gene Vincent & His Blue Caps','The Screaming End: The Best of Gene Vincent and His Blue Caps',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (104,'Hot Stuff','Donna Summer','Bad Girls',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (105,'Living For The City','Stevie Wonder','Innervisions',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (106,'The Boxer','Simon & Garfunkel','Bridge Over Troubled Water',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (107,'Mr. Tambourine Man','Bob Dylan','Bringing It All Back Home',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (108,'Not Fade Away','Buddy Holly & The Crickets','Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (109,'Little Red Corvette','Prince','1999',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (110,'Brown Eyed Girl','Van Morrison','Blowin'' Your Mind',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (111,'I''ve Been Loving You Too Long (To Stop Now)','Otis Redding','Otis Blue: Otis Redding Sings Soul',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (112,'I''m So Lonesome I Could Cry','Hank Williams','The Ultimate Collection',1949);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (113,'That''s All Right','Elvis Presley','Sunrise',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (114,'Up On the Roof','The Drifters','The Very Best of the Drifters',1962);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (115,'You Send Me','Sam Cooke','Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (116,'Honky Tonk Women','The Rolling Stones','Let It Bleed',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (117,'Take Me To The River','Al Green','Al Green Explores Your Mind',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (118,'Crazy in Love (feat. Jay-Z)','Beyoncé','Dangerously in Love',2003);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (119,'Shout (Parts 1 & 2)','The Isley Brothers','The Isley Brothers Story, Vol. 1: Rockin'' Soul',1959);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (120,'Go Your Own Way','Fleetwood Mac','Rumours',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (121,'I Want You Back','The Jackson 5','The Ultimate Collection',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (122,'Stand By Me','Ben E. King','The Very Best of Ben E. King',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (123,'The House of the Rising Sun','The Animals','The Best of the Animals',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (124,'It''s A Man''s Man''s Man''s World','James Brown','50th Anniversary Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (125,'Jumpin'' Jack Flash','The Rolling Stones','Forty Licks',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (126,'Will You Love Me Tomorrow','The Shirelles','Girl Group Greats',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (127,'Shake','Big Joe Turner','The Very Best of Big Joe Turner',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (128,'Changes','David Bowie','Hunky Dory',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (129,'Rock and Roll Music','Chuck Berry','Johnny B. Goode: His Complete ''50s Chess Recordings',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (130,'Born to Be Wild','Steppenwolf','Steppenwolf',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (131,'Maggie May','Rod Stewart','Every Picture Tells A Story',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (132,'With or Without You','U2','The Joshua Tree',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (133,'Who Do You Love?','Bo Diddley','His Best: The Chess 50th Anniversary Collection',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (134,'Won''t Get Fooled Again','The Who','Who''s Next',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (135,'In the Midnight Hour','Wilson Pickett','The Very Best of Wilson Pickett',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (136,'While My Guitar Gently Weeps','The Beatles','The Beatles',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (137,'Your Song','Elton John','Greatest Hits',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (138,'Eleanor Rigby','The Beatles','Revolver',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (139,'Family Affair','Sly & The Family Stone','There''s a Riot Goin'' On',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (140,'I Saw Her Standing There','The Beatles','Please Please Me',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (141,'Kashmir','Led Zeppelin','Physical Graffiti',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (142,'All I Have to Do Is Dream','The Everly Brothers','All-Time Original Hits',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (143,'Please, Please, Please','James Brown','50th Anniversary Collection',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (144,'Purple Rain','Prince and The Revolution','Purple Rain',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (145,'I Wanna Be Sedated','Ramones','Road to Ruin',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (146,'Everyday People','Sly & The Family Stone','Stand!',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (147,'Rock Lobster','The B-52''s','The B-52''s',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (148,'Me And Bobby McGee','Janis Joplin','Pearl',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (149,'Lust For Life','Iggy Pop','Lust For Life',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (150,'Cathy''s Clown','The Everly Brothers','All-Time Original Hits',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (151,'Eight Miles High','The Byrds','Fifth Dimension',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (152,'Earth Angel','The Penguins','Earth Angel',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (153,'Foxey Lady','The Jimi Hendrix Experience','Are You Experienced?',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (154,'A Hard Day''s Night','The Beatles','A Hard Day''s Night',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (155,'Rave On','Buddy Holly & The Crickets','Buddy Holly: Greatest Hits',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (156,'Proud Mary','Creedence Clearwater Revival','Bayou Country',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (157,'The Sound of Silence','Simon & Garfunkel','Sounds of Silence',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (158,'I Only Have Eyes for You','The Flamingos','The Best of the Flamingos',1959);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (159,'(We''re Gonna) Rock Around The Clock','Bill Haley & His Comets','The Best of Bill Haley and His Comets',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (160,'Moment of Surrender','U2','No Line on the Horizon',2009);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (161,'I''m Waiting for the Man','The Velvet Underground','The Velvet Underground & Nico',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (162,'Bring the Noise','Public Enemy','It Takes a Nation of Millions to Hold Us Back',1988);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (163,'Folsom Prison Blues','Johnny Cash','The Essential Johnny Cash',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (164,'I Can''t Stop Loving You','Ray Charles','Modern Sounds in Country and Western Music',1962);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (165,'Nothing Compares 2 U','Sinead O''Connor','I Do Not Want What I Haven''t Got',1990);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (166,'Bohemian Rhapsody','Queen','A Night at the Opera',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (167,'Fast Car','Tracy Chapman','Tracy Chapman',1988);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (168,'Let''s Get It On','Marvin Gaye','Let''s Get It On',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (169,'Papa Was a Rollin'' Stone','The Temptations','Anthology',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (170,'Losing My Religion','R.E.M.','Out of Time',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (171,'Both Sides Now','Joni Mitchell','Clouds',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (172,'99 Problems','Jay-Z','The Black Album',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (173,'Dream On','Aerosmith','Aerosmith',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (174,'Dancing Queen','ABBA','Arrival',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (175,'God Save the Queen','Sex Pistols','Never Mind the Bollocks, Here''s the Sex Pistols',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (176,'Paint It, Black','The Rolling Stones','Aftermath',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (177,'I Fought the Law','The Bobby Fuller Four','I Fought the Law: The Best of the Bobby Fuller Four',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (178,'Don''t Worry Baby','The Beach Boys','Sounds of Summer',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (179,'Free Fallin''','Tom Petty','Full Moon Fever',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (180,'September Gurls','Big Star','Radio City',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (181,'Love Will Tear Us Apart','Joy Division','Substance 1977-1980',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (182,'Hey Ya!','OutKast','Speakerboxxx/The Love Below',2003);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (183,'Green Onions','Booker T. & The MG''s','Green Onions',1962);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (184,'Save the Last Dance for Me','The Drifters','The Drifters'' Golden Hits',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (185,'The Thrill Is Gone','B.B. King','Greatest Hits',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (186,'Please Please Me','The Beatles','Please Please Me',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (187,'Desolation Row','Bob Dylan','Highway 61 Revisited',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (188,'Who''ll Stop the Rain','Creedence Clearwater Revival','Cosmo''s Factory',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (189,'I Never Loved a Man (the Way I Love You)','Aretha Franklin','I Never Loved a Man (the Way I Love You)',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (190,'Back in Black','AC/DC','Back in Black',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (191,'Stayin'' Alive','Bee Gees','Saturday Night Fever',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (192,'Knocking On Heaven''s Door','Bob Dylan','The Essential Bob Dylan',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (193,'Free Bird','Lynyrd Skynyrd','One More From the Road',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (194,'Rehab','Amy Winehouse','Back to Black',2007);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (195,'Wichita Lineman','Glen Campbell','Wichita Lineman',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (196,'There Goes My Baby','The Drifters','The Very Best of the Drifters',1959);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (197,'Peggy Sue','Buddy Holly','Greatest Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (198,'Sweet Child o'' Mine','Guns N'' Roses','Appetite for Destruction',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (199,'Maybe','The Chantels','The Best of the Chantels',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (200,'Don''t Be Cruel','Elvis Presley','Elvis: 30 #1 Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (201,'Hey Joe','The Jimi Hendrix Experience','Are You Experienced?',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (202,'Flash Light','Parliament','Funkentelechy vs. the Placebo Syndrome',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (203,'Loser','Beck','Mellow Gold',1993);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (204,'Bizarre Love Triangle','New Order','Substance',1986);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (205,'Come Together','The Beatles','Abbey Road',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (206,'Positively 4th Street','Bob Dylan','The Essential Bob Dylan',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (207,'Try a Little Tenderness','Otis Redding','Very Best of Otis Redding',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (208,'Lean on Me','Bill Withers','Lean on Me',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (209,'Reach Out I''ll Be There','The Four Tops','The Ultimate Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (210,'Bye Bye Love','The Everly Brothers','All-Time Original Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (211,'Gloria','Them','The Story of Them',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (212,'In My Room','The Beach Boys','Surfer Girl/Shut Down, Volume 2',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (213,'96 Tears','? and the Mysterians','More Action',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (214,'Caroline, No','The Beach Boys','Pet Sounds',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (215,'1999','Prince','1999',1982);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (216,'Rockin'' in the Free World','Neil Young','Freedom',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (217,'Your Cheatin'' Heart','Hank Williams','The Ultimate Collection',1953);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (218,'Do You Believe In Magic','The Lovin'' Spoonful','Do You Believe in Magic',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (219,'Jolene','Dolly Parton','Jolene',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (220,'Boom Boom','John Lee Hooker','The Very Best of John Lee Hooker',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (221,'Spoonful','Howlin'' Wolf','Anniversary Collection',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (222,'Walk away Renée','The Left Banke','There''s Gonna Be a Storm',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (223,'Walk on the Wild Side','Lou Reed','Transformer',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (224,'Oh','Roy Orbison','For the Lonely: 18 Greatest Hits',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (225,'Dance To The Music','Sly & The Family Stone','Dance to the Music',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (226,'Hoochie Coochie Man','Muddy Waters','The Anthology',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (227,'Fire and Rain','James Taylor','Sweet Baby James',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (228,'Should I Stay or Should I Go','The Clash','Combat Rock',1982);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (229,'Good Times','Chic','Risqué',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (230,'Mannish Boy','Muddy Waters','The Anthology',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (231,'Moondance','Van Morrison','Moondance',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (232,'Just Like a Woman','Bob Dylan','Blonde on Blonde',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (233,'Sexual Healing','Marvin Gaye','Midnight Love',1982);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (234,'Only the Lonely','Roy Orbison','For the Lonely: 18 Greatest Hits',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (235,'We Gotta Get Out Of This Place','The Animals','Retrospective',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (236,'Paper Planes','M.I.A.','Kala',2008);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (237,'I''ll Feel A Whole Lot Better','The Byrds','Mr. Tambourine Man',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (238,'Everyday','Buddy Holly & The Crickets','Best of Buddy Holly',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (239,'I Got a Woman','Ray Charles','Atlantic Singles',1954);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (240,'Planet Rock','Afrika Bambaataa & the Soulsonic Force','Looking for the Perfect Beat 1980-1985',1982);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (241,'I Fall to Pieces','Patsy Cline','12 Greatest Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (242,'Son of a Preacher Man','Dusty Springfield','Dusty in Memphis',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (243,'The Wanderer','Dion','Runaround Sue',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (244,'Stand!','Sly & The Family Stone','Stand!',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (245,'Rocket Man (I Think It''s Going To Be A Long, Long Time)','Elton John','Honky Chateau',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (246,'Love Shack','The B-52''s','Cosmic Thing',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (247,'Gimme Some Lovin''','The Spencer Davis Group','Gimme Some Lovin''',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (248,'(Your Love Keeps Lifting Me) Higher And Higher','Jackie Wilson','The Very Best of Jackie Wilson',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (249,'The Night They Drove Old Dixie Down','The Band','The Band',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (250,'Hot Fun In The Summertime','Sly & The Family Stone','Greatest Hits',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (251,'Rapper''s Delight','The Sugarhill Gang','Rappers Delight: The Best of Sugarhill Gang',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (252,'Chain Of Fools','Aretha Franklin','Lady Soul',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (253,'Paranoid','Black Sabbath','Paranoid',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (254,'Money Honey','The Drifters','Greatest Hits',1953);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (255,'Mack the Knife','Bobby Darin','That’s All',1959);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (256,'All the Young Dudes','Mott the Hoople','All The Young Dudes',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (257,'Paranoid Android','Radiohead','OK Computer',1997);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (258,'Highway To Hell','AC/DC','Highway to Hell',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (259,'Heart of Glass','Blondie','Parallel Lines',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (260,'Mississippi','Bob Dylan','Love and Theft',2001);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (261,'Wild Thing','The Troggs','Greatest Hits',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (262,'I Can See for Miles','The Who','The Who Sell Out',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (263,'Oh','The Dells','Ultimate Collection',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (264,'Hallelujah','Jeff Buckley','Grace',1994);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (265,'Higher Ground','Stevie Wonder','Innervisions',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (266,'Ooo Baby Baby','Smokey Robinson and the Miracles','Ooo Baby Baby: The Anthology',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (267,'He''s a Rebel','The Crystals','Best of the Crystals',1962);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (268,'Sail Away','Randy Newman','Sail Away',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (269,'Walking In The Rain','The Ronettes','The Best of the Ronettes',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (270,'Tighten Up','Archie Bell & The Drells','Tightening It Up: The Best of Archie Bell and the Drells',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (271,'Personality Crisis','New York Dolls','New York Dolls',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (272,'Sunday Bloody Sunday','U2','War',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (273,'Jesus Walks','Kanye West','The College Dropout',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (274,'Roadrunner','The Modern Lovers','The Modern Lovers',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (275,'He Stopped Loving Her Today','George Jones','I Am What I Am',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (276,'Sloop John B','The Beach Boys','Pet Sounds',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (277,'Sweet Little Sixteen','Chuck Berry','The Anthology',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (278,'Something','The Beatles','Abbey Road',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (279,'Somebody to Love','Jefferson Airplane','Surrealistic Pillow',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (280,'Born in the U.S.A.','Bruce Springsteen','Born in the U.S.A.',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (281,'I''ll Take You There','The Staple Singers','Bealtitude: Respect Yourself',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (282,'Ziggy Stardust','David Bowie','The Rise and Fall of Ziggy Stardust and the Spiders Mars',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (283,'Pictures of You','The Cure','Disintegration',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (284,'Chapel Of Love','The Dixie Cups','The Best of the Girl Groups, Vol. 1',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (285,'Ain''t No Sunshine','Bill Withers','Lean on Me: The Best of Bill Withers',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (286,'Seven Nation Army','The White Stripes','Elephant',2003);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (287,'You Are the Sunshine of My Life','Stevie Wonder','Talking Book',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (288,'Help Me','Joni Mitchell','Court and Spark',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (289,'Call Me','Blondie','Best of Blondie',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (290,'(What''s So Funny ''Bout) Peace, Love And Understanding','Elvis Costello & The Attractions','Armed Forces',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (291,'Smokestack Lightning','Howlin'' Wolf','His Best',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (292,'Summer Babe (Winter Version)','Pavement','Slanted and Enchanted',1992);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (293,'Walk This Way','Run-D.M.C.','Raising Hell',1986);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (294,'Money (That''s What I Want)','Barrett Strong','Motown: The Classic Years',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (295,'Can''t Buy Me Love','The Beatles','A Hard Day''s Night',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (296,'Stan (feat. Dido)','Eminem','The Marshall Mathers LP',2000);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (297,'She''s Not There','The Zombies','British Invasion: 1963-1967',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (298,'Train in Vain','The Clash','London Calling',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (299,'Tired Of Being Alone','Al Green','Greatest Hits',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (300,'Black Dog','Led Zeppelin','Led Zeppelin IV',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (301,'Street Fighting Man','The Rolling Stones','Beggars Banquet',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (302,'Get Up, Stand Up','Bob Marley & The Wailers','Legend',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (303,'Heart of Gold','Neil Young','Harvest',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (304,'Sign ''O'' The Times','Prince','Sign ''O'' The Times',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (305,'One Way or Another','Blondie','Parallel Lines',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (306,'Like a Prayer','Madonna','Like a Prayer',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (307,'One More Time','Daft Punk','Discovery',2000);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (308,'Da Ya Think I''m Sexy?','Rod Stewart','Blondes Have More Fun',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (309,'Blue Eyes Crying In The Rain','Willie Nelson','Red Headed Stranger',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (310,'Ruby Tuesday','The Rolling Stones','Between the Buttons',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (311,'With a Little Help My Friends','The Beatles','Sgt. Pepper''s Lonely Hearts Club Band',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (312,'Say It Loud (I''m Black and I''m Proud)','James Brown','50th Anniversary Collection',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (313,'That''s Entertainment','The Jam','Sound Affects',1980);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (314,'Why Do Fools Fall In Love','Frankie Lymon & The Teenagers','The Best of Frankie Lymon and the Teenagers',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (315,'Lonely Teardrops','Jackie Wilson','The Greatest Hits of Jackie Wilson',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (316,'What''s Love Got to Do With It','Tina Turner','Private Dancer',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (317,'Iron Man','Black Sabbath','Paranoid',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (318,'Wake Up Little Susie','The Everly Brothers','The Best of the Everly Brothers',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (319,'In Dreams','Roy Orbison','For the Lonely: 18 Greatest Hits',1963);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (320,'I Put A Spell On You','Screamin'' Jay Hawkins','Voodoo Jive',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (321,'Comfortably Numb','Pink Floyd','The Wall',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (322,'Don''t Let Me Be Misunderstood','The Animals','Retrospective',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (323,'Alison','Elvis Costello','My Aim Is True',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (324,'Wish You Were Here','Pink Floyd','Wish You Were Here',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (325,'Many Rivers to Cross','Jimmy Cliff','Wonderful World, Beautiful People',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (326,'School''s Out','Alice Cooper','School''s Out',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (327,'Take Me Out','Franz Ferdinand','Franz Ferdinand',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (328,'Heartbreaker','Led Zeppelin','Led Zeppelin II',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (329,'Cortez the Killer','Neil Young & Crazy Horse','Zuma',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (330,'Fight the Power','Public Enemy','Fear of a Black Planet',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (331,'Dancing Barefoot','Patti Smith Group','Wave',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (332,'Baby Love','The Supremes','The Ultimate Collection',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (333,'Good Lovin''','The Rascals','The Very Best of the Rascals',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (334,'Get Up (I Feel Like Being a) Sex Machine','James Brown','50th Anniversary Collection',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (335,'For Your Precious Love','The Impressions','Greatest Hits',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (336,'The End','The Doors','The Doors',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (337,'Wind and Fire','Earth','That''s The Way of the World',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (338,'We Will Rock You','Queen','News of the World',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (339,'I Can''t Make You Love Me','Bonnie Raitt','Luck of the Draw',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (340,'Subterranean Homesick Blues','Bob Dylan','Bringing It All Back Home',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (341,'Spirit in the Sky','Norman Greenbaum','Spirit in the Sky',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (342,'Sweet Jane','The Velvet Underground','Loaded (Fully Loaded Edition)',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (343,'Wild Horses','The Rolling Stones','Sticky Fingers',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (344,'Beat It','Michael Jackson','Thriller',1982);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (345,'Beautiful Day','U2','All That You Can''t Leave Behind',2000);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (346,'Walk This Way','Aerosmith','Toys in the Attic',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (347,'Maybe I''m Amazed','Paul McCartney','McCartney',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (348,'You Keep Me Hangin'' On','The Supremes','The Ultimate Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (349,'Baba O''Riley','The Who','Who''s Next',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (350,'The Harder They Come','Jimmy Cliff','The Harder They Come',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (351,'Runaround Sue','Dion','Runaround Sue',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (352,'Jim Dandy','Lavern Baker','Soul on Fire: The Best of LaVern Baker',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (353,'Piece of My Heart','Big Brother & The Holding Company','Cheap Thrills',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (354,'La Bamba','Ritchie Valens','The Ritchie Valens Story',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (355,'California Love (remix) (feat. Dr. Dre & Roger Troutman)','2Pac','Greatest Hits',1996);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (356,'Candle in the Wind','Elton John','Goodbye Yellow Brick Road',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (357,'That Lady (Parts 1 & 2)','The Isley Brothers','The Essential Isley Brothers',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (358,'Spanish Harlem','Ben E. King','The Very Best of Ben E. King',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (359,'The Loco-Motion','Little Eva','The Loco-Motion',1962);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (360,'The Great Pretender','The Platters','The Magic Touch: An Anthology',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (361,'All Shook Up','Elvis Presley','Elvis 30 #1 Hits',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (362,'Tears in Heaven','Eric Clapton','"Rush" Soundtrack',1992);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (363,'Watching The Detectives','Elvis Costello','My Aim Is True',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (364,'Bad Moon Rising','Creedence Clearwater Revival','Green River',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (365,'Sweet Dreams (Are Made of This)','Eurythmics','Sweet Dreams',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (366,'Little Wing','The Jimi Hendrix Experience','Axis: Bold As Love',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (367,'Nowhere To Run','Martha and the Vandellas','The Ultimate Collection',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (368,'Got My Mojo Working','Muddy Waters','The Anthology',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (369,'Killing Me Softly With His Song','Roberta Flack','Killing Me Softly',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (370,'All You Need Is Love','The Beatles','Magical Mystery Tour',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (371,'Complete Control','The Clash','The Clash',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (372,'The Letter','The Box Tops','The Letter',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (373,'Highway 61 Revisited','Bob Dylan','Highway 61 Revisited',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (374,'Unchained Melody','The Righteous Brothers','Anthology 1962-1974',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (375,'How Deep Is Your Love','Bee Gees','Saturday Night Fever',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (376,'White Room','Cream','Wheels Of Fire',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (377,'Personal Jesus','Depeche Mode','Violator',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (378,'I''m A Man','Bo Diddley','His Best: The Chess 50th Anniversary Collection',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (379,'The Wind Cries Mary','The Jimi Hendrix Experience','Are You Experienced?',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (380,'I Can''t Explain','The Who','The Ultimate Collection',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (381,'Marquee Moon','Television','Marquee Moon',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (382,'Wonderful World','Sam Cooke','Portrait of a Legend 1951-1964',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (383,'Brown Eyed Handsome Man','Chuck Berry','The Anthology',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (384,'Another Brick In The Wall (Part II)','Pink Floyd','The Wall',1979);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (385,'Fake Plastic Trees','Radiohead','The Bends',1995);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (386,'Maps','Yeah Yeah Yeahs','Fever to Tell',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (387,'Hit the Road Jack','Ray Charles','Ultimate Hits Collection',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (388,'Pride (in the Name of Love)','U2','The Unforgettable Fire',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (389,'Radio Free Europe','R.E.M.','Murmur',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (390,'Goodbye Yellow Brick Road','Elton John','Goodbye Yellow Brick Road',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (391,'Tell It Like It Is','Aaron Neville','Tell It Like It Is: Golden Classics',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (392,'Bitter Sweet Symphony','The Verve','Urban Hymns',1997);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (393,'Whipping Post','The Allman Brothers Band','At Fillmore East',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (394,'Ticket to Ride','The Beatles','Help!',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (395,'Stills, Nash & Young','Crosby','Decade',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (396,'I Know You Got Soul','Eric B. & Rakim','Paid In Full',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (397,'Tiny Dancer','Elton John','Madman Across the Water',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (398,'Roxanne','The Police','Outlandos d''Amour',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (399,'Just My Imagination (Running Away With Me)','The Temptations','Anthology',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (400,'Baby I Need Your Loving','The Four Tops','The Ultimate Collection',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (401,'Summer in the City','The Lovin'' Spoonful','The Lovin'' Spoonful Greatest Hits',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (402,'O-o-h Child','The Five Stairsteps','Soul Hits of the ''70s: Didn''t It Blow Your Mind! Vol. 2',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (403,'Can''t Help Falling in Love','Elvis Presley','Elvis 30 #1 Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (404,'Remember (Walkin'' In The Sand)','The Shangri-Las','The Best of the Shangri-Las',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (405,'(Don''t Fear) The Reaper','Blue Öyster Cult','Agents of Fortune',1976);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (406,'Thirteen','Big Star','#1 Record/Radio City',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (407,'Sweet Home Alabama','Lynyrd Skynyrd','Second Helping',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (408,'Enter Sandman','Metallica','Metallica',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (409,'Tonight''s the Night','The Shirelles','25 All-Time Greatest Hits',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (410,'Thank You (Falettinme Be Mice Elf Agin)','Sly & The Family Stone','Greatest Hits',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (411,'C''mon Everybody','Eddie Cochran','Anthology',1958);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (412,'Umbrella (feat. Jay-Z)','Rihanna','Good Girl Gone Bad',2007);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (413,'Visions of Johanna','Bob Dylan','Blonde on Blonde',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (414,'We''ve Only Just Begun','Carpenters','Singles 1969-1981',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (415,'In Bloom','Nirvana','Nevermind',1991);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (416,'Sweet Emotion','Aerosmith','Toys in the Attic',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (417,'Monkey Gone to Heaven','Pixies','Doolittle',1989);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (418,'I Feel Love','Donna Summer','The Donna Summer Anthology',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (419,'Ode to Billie Joe','Bobbie Gentry','Greatest Hits',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (420,'The Girl Can''t Help It','Little Richard','The Georgia Peach',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (421,'Young Blood','The Coasters','The Very Best of the Coasters',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (422,'I Can''t Help Myself','The Four Tops','The Ultimate Collection',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (423,'The Boys Of Summer','Don Henley','Building the Perfect Beast',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (424,'Juicy','The Notorious B.I.G','Ready to Die',1994);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (425,'Fuck tha Police','N.W.A','Straight Outta Compton',1988);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (426,'Stills & Nash, Suite: Judy Blue Eyes','Crosby','Crosby, Stills and Nash',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (427,'Nuthin'' but a ''G'' Thang','Dr. Dre','The Chronic',1993);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (428,'It''s Your Thing','The Isley Brothers','The Ultimate Isley Brothers',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (429,'Piano Man','Billy Joel','Piano Man',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (430,'Blue Suede Shoes','Elvis Presley','2nd to None',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (431,'William','The Smiths','Louder Than Bombs',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (432,'American Idiot','Green day','American Idiot',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (433,'Tumbling Dice','The Rolling Stones','Exile on Main Street',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (434,'Smoke on the Water','Deep Purple','Machine Head',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (435,'New Year''s Day','U2','War',1983);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (436,'Everybody Needs Somebody To Love','Solomon Burke','The Very Best of Solomon Burke',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (437,'(White Man) In Hammersmith Palais','The Clash','The Clash',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (438,'Ain''t That a Shame','Fats Domino','The Fats Domino Jukebox: 20 Greatest Hits',1955);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (439,'Midnight Train To Georgia','Gladys Knight & The Pips','Essential Collection',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (440,'Ramble On','Led Zeppelin','Led Zeppelin II',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (441,'Mustang Sally','Wilson Pickett','The Very Best of Wilson Pickett',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (442,'Alone Again Or','Love','Forever Changes',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (443,'Beast of Burden','The Rolling Stones','Some Girls',1981);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (444,'Love Me Tender','Elvis Presley','Elvis: 30 #1 Hits',1956);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (445,'I Wanna Be Your Dog','The Stooges','The Stooges',1969);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (446,'Push It','Salt-N-Pepa','Hot, Cool and Vicious',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (447,'Pink Houses','John Mellencamp','Uh-Huh',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (448,'In Da Club','50 Cent','Get Rich or Die Tryin''',2003);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (449,'Come Go With Me','The Del-Vikings','Golden Classics',1957);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (450,'I Shot The Sheriff','Bob Marley & The Wailers','Burnin''',1973);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (451,'I Got You Babe','Sonny & Cher','The Beat Goes On: The Best of Sonny and Cher',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (452,'Come as You Are','Nirvana','Nevermind',1992);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (453,'Pressure Drop','Toot and the Maytals','The Harder They Come',1968);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (454,'Leader of the Pack','The Shangri-Las','Myrmidons of Melodrama: Definitive Collection',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (455,'Heroin','The Velvet Underground','The Velvet Underground & Nico',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (456,'Penny Lane','The Beatles','Magical Mystery Tour',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (457,'The Twist','Chubby Checker','Greatest Hits',1960);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (458,'Cupid','Sam Cooke','Greatest Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (459,'Paradise City','Guns N'' Roses','Appetite for Destruction',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (460,'My Sweet Lord','George Harrison','All Things Must Pass',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (461,'Sheena Is a Punk Rocker','Ramones','Rocket to Russia',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (462,'All Apologies','Nirvana','In Utero',1993);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (463,'Soul Man','Sam & Dave','Soul Men',1965);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (464,'Kiss','Prince and The Revolution','Parade',1986);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (465,'Rollin'' Stone','Muddy Waters','The Anthology: 1947-1972',1948);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (466,'Get Ur Freak On','Missy Elliott','Miss E … So Addictive',2001);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (467,'Big Pimpin'' (feat. UGK)','Jay-Z','Vol. 3: Life and Times of S. Carter',2000);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (468,'Respect Yourself','The Staple Singers','Bealtitude: Respect Yourself',1972);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (469,'Rain','The Beatles','Past Masters',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (470,'Standing In The Shadows Of Love','The Four Tops','The Ultimate Collection',1966);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (471,'Surrender','Cheap Trick','Heaven Tonight',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (472,'Runaway','Del Shannon','Greatest Hits',1961);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (473,'Welcome to the Jungle','Guns N'' Roses','Appetite for Destruction',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (474,'Into The Mystic','Van Morrison','Moondance',1970);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (475,'Where Did Our Love Go','The Supremes','The Ultimate Collection',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (476,'Do Right Woman, Do Right Man','Aretha Franklin','I Never Loved a Man the Way I Love You',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (477,'How Soon Is Now?','The Smiths','Meat Is Murder',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (478,'Last Nite','The Strokes','Is This It',2001);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (479,'I Want To Know What Love Is','Foreigner','Agent Provocateur',1984);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (480,'Sabotage','Beastie Boys','Ill Communication',1994);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (481,'Super Freak','Rick James','Street Songs',1981);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (482,'Since U Been Gone','Kelly Clarkson','Breakaway',2004);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (483,'White Rabbit','Jefferson Airplane','Surrealistic Pillow',1967);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (484,'Cry Me a River','Justin Timberlake','Justified',2002);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (485,'Lady Marmalade','Labelle','Nightbirds',1974);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (486,'Young Americans','David Bowie','Young Americans',1975);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (487,'I''m Eighteen','Alice Cooper','Love It to Death',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (488,'Just Like Heaven','The Cure','Kiss Me, Kiss Me, Kiss Me',1987);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (489,'Under the Boardwalk','The Drifters','The Very Best of the Drifters',1964);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (490,'Clocks','Coldplay','A Rush of Blood to the Head',2002);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (491,'I Love Rock ''N Roll','Joan Jett and The Blackhearts','I Love Rock ''N Roll',1981);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (492,'I Will Survive','Gloria Gaynor','I Will Survive: The Anthology',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (493,'Time to Pretend','MGMT','Oracular Spectacular',2008);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (494,'Ignition (Remix)','R. Kelly','Chocolate Factory',2003);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (495,'Brown Sugar','The Rolling Stones','Sticky Fingers',1971);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (496,'Running On Empty','Jackson Browne','Running on Empty',1977);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (497,'The Rising','Bruce Springsteen','The Rising',2002);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (498,'Miss You','The Rolling Stones','Some Girls',1978);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (499,'Buddy Holly','Weezer','Weezer',1994);
INSERT INTO "songs" ("rank","title","artist","album","year") VALUES (500,'Shop Around','Smokey Robinson and the Miracles','The Ultimate Collection',1960);
COMMIT;
@nanotaboada
Copy link
Author

All trademarks, registered trademarks, service marks, product names, company names or logos are property of their respective owners and are used for educational purposes only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment