{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "name": "Lab 11 - SQL Connections.ipynb", "version": "0.3.2", "provenance": [], "include_colab_link": true }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.0" }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "view-in-github", "colab_type": "text" }, "source": [ "\"Open" ] }, { "cell_type": "markdown", "metadata": { "id": "6W0l3CARtaTT", "colab_type": "text" }, "source": [ "# SQL Tutorial\n", "\n", "In this tutorial, we will refresh some knowledge of SQL, and learn how to interact directly between Python and SQL.\n", "\n", "For this, we will use [SQLite](https://www.sqlite.org), a library that allows connecting to small databases. SQLite is a great utility: It allows creating efficient databases on-the-fly, and it is oriented towards apps, applications, and in-place data analytics. A great summary of case uses for SQLite can be found [here](https://www.sqlite.org/whentouse.html).\n", "\n", "(Note: SQLite should be installed in your PC. If not, download the binaries from [here](https://www.sqlite.org/download.html) and save them in your notebook's folder).\n", "\n", "The provided file comes with the [Chinook sample database](http://www.sqlitetutorial.net/sqlite-sample-database/). This database simulates a music business, and its schema is represented by:\n", "\n", "![Schema](http://www.sqlitetutorial.net/wp-content/uploads/2015/11/sqlite-sample-database-color.jpg)\n", "\n", "We will use this database to refresh our knowledge of SQL, and then to create Pandas datasets directly from any database. This is a common operation when doing data preprocessing.\n", "\n", "\n", "SQL is a very extensive language, but its mastery comes from practice. We will only see some of the tutorial activities today, so I advice you to go to [the SQLite tutorial](http://www.sqlitetutorial.net/) and go through some of the most advanced characteristics, and also go through the full [SQL reference on W3School](https://www.w3schools.com/sql/sql_quickref.asp)." ] }, { "cell_type": "markdown", "metadata": { "id": "UeMCSCBEtaTU", "colab_type": "text" }, "source": [ "## Reading Data" ] }, { "cell_type": "markdown", "metadata": { "id": "gxyQBgRruIAV", "colab_type": "text" }, "source": [ "First we import the data we will use, from the [SQLite tutorial](http://www.sqlitetutorial.net/sqlite-sample-database/)." ] }, { "cell_type": "code", "metadata": { "id": "CEmE72qWvYhk", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 235 }, "outputId": "5bafd3d8-6104-49f2-fa16-b86c8de04b10" }, "source": [ "!wget http://www.sqlitetutorial.net/wp-content/uploads/2018/03/chinook.zip\n", "!unzip chinook.zip" ], "execution_count": 2, "outputs": [ { "output_type": "stream", "text": [ "--2019-05-09 13:17:23-- http://www.sqlitetutorial.net/wp-content/uploads/2018/03/chinook.zip\n", "Resolving www.sqlitetutorial.net (www.sqlitetutorial.net)... 66.147.244.187\n", "Connecting to www.sqlitetutorial.net (www.sqlitetutorial.net)|66.147.244.187|:80... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 305596 (298K) [application/zip]\n", "Saving to: ‘chinook.zip’\n", "\n", "\rchinook.zip 0%[ ] 0 --.-KB/s \rchinook.zip 100%[===================>] 298.43K 1.72MB/s in 0.2s \n", "\n", "2019-05-09 13:17:23 (1.72 MB/s) - ‘chinook.zip’ saved [305596/305596]\n", "\n", "Archive: chinook.zip\n", " inflating: chinook.db \n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "id": "g6edRhp1veXz", "colab_type": "text" }, "source": [ "Now we import the sqlite package, called sqlite3" ] }, { "cell_type": "code", "metadata": { "id": "DuKytzgNtaTU", "colab_type": "code", "colab": {} }, "source": [ "import sqlite3" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "-aUft85vtaTX", "colab_type": "text" }, "source": [ "The basic object in a SQLite query is the *Connection*. A Connection object links Python with the database." ] }, { "cell_type": "code", "metadata": { "id": "qlAhy8eVtaTX", "colab_type": "code", "colab": {} }, "source": [ "conn = sqlite3.connect('chinook.db')" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "rUDXBNfZtaTZ", "colab_type": "text" }, "source": [ "Now we are ready to create our first query. Let's retrieve the ID, name, composer and price for all tracks in our dataset. We first will create the SQL query into a variable, and then simply execute the query into a *Cursor*, which is simply a pointer to the output of the query.\n", "\n", "The basic structure of a SQL SELECT query is:\n", "\n", "```\n", "SELECT [fields]\n", "FROM [table]\n", "WHERE [condition]\n", "ORDER BY [field]\n", "```" ] }, { "cell_type": "code", "metadata": { "id": "iyolh1DNtaTa", "colab_type": "code", "colab": {} }, "source": [ "query = \"SELECT trackid, name, composer, unitprice FROM tracks;\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "7kpA9CHItaTc", "colab_type": "text" }, "source": [ "We can now show the results of the query with the method *fetchall()*. Note that, as *out* is a cursor, once we do this we will have reached the end of the query, thus we will need to run it again to get new elements. We can also use the *fetchmany* or *fetchone* methods to get segments of the query, or even iterate over the results if necessary." ] }, { "cell_type": "code", "metadata": { "id": "3DLxvkQDtaTc", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 23436 }, "outputId": "245c1a7d-9767-426a-ed28-0b7a2c5af9e1" }, "source": [ "out.fetchall()" ], "execution_count": 5, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[(1,\n", " 'For Those About To Rock (We Salute You)',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 0.99),\n", " (2, 'Balls to the Wall', None, 0.99),\n", " (3,\n", " 'Fast As a Shark',\n", " 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 0.99),\n", " (4,\n", " 'Restless and Wild',\n", " 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 0.99),\n", " (5, 'Princess of the Dawn', 'Deaffy & R.A. Smith-Diesel', 0.99),\n", " (6,\n", " 'Put The Finger On You',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 0.99),\n", " (7, \"Let's Get It Up\", 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (8, 'Inject The Venom', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (9, 'Snowballed', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (10, 'Evil Walks', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (11, 'C.O.D.', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (12, 'Breaking The Rules', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (13,\n", " 'Night Of The Long Knives',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 0.99),\n", " (14, 'Spellbound', 'Angus Young, Malcolm Young, Brian Johnson', 0.99),\n", " (15, 'Go Down', 'AC/DC', 0.99),\n", " (16, 'Dog Eat Dog', 'AC/DC', 0.99),\n", " (17, 'Let There Be Rock', 'AC/DC', 0.99),\n", " (18, 'Bad Boy Boogie', 'AC/DC', 0.99),\n", " (19, 'Problem Child', 'AC/DC', 0.99),\n", " (20, 'Overdose', 'AC/DC', 0.99),\n", " (21, \"Hell Ain't A Bad Place To Be\", 'AC/DC', 0.99),\n", " (22, 'Whole Lotta Rosie', 'AC/DC', 0.99),\n", " (23,\n", " 'Walk On Water',\n", " 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw',\n", " 0.99),\n", " (24, 'Love In An Elevator', 'Steven Tyler, Joe Perry', 0.99),\n", " (25, 'Rag Doll', 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight', 0.99),\n", " (26, 'What It Takes', 'Steven Tyler, Joe Perry, Desmond Child', 0.99),\n", " (27,\n", " 'Dude (Looks Like A Lady)',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 0.99),\n", " (28, \"Janie's Got A Gun\", 'Steven Tyler, Tom Hamilton', 0.99),\n", " (29, \"Cryin'\", 'Steven Tyler, Joe Perry, Taylor Rhodes', 0.99),\n", " (30, 'Amazing', 'Steven Tyler, Richie Supa', 0.99),\n", " (31, 'Blind Man', 'Steven Tyler, Joe Perry, Taylor Rhodes', 0.99),\n", " (32, 'Deuces Are Wild', 'Steven Tyler, Jim Vallance', 0.99),\n", " (33, 'The Other Side', 'Steven Tyler, Jim Vallance', 0.99),\n", " (34, 'Crazy', 'Steven Tyler, Joe Perry, Desmond Child', 0.99),\n", " (35, 'Eat The Rich', 'Steven Tyler, Joe Perry, Jim Vallance', 0.99),\n", " (36, 'Angel', 'Steven Tyler, Desmond Child', 0.99),\n", " (37, \"Livin' On The Edge\", 'Steven Tyler, Joe Perry, Mark Hudson', 0.99),\n", " (38, 'All I Really Want', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (39, 'You Oughta Know', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (40, 'Perfect', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (41, 'Hand In My Pocket', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (42, 'Right Through You', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (43, 'Forgiven', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (44, 'You Learn', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (45, 'Head Over Feet', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (46, 'Mary Jane', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (47, 'Ironic', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (48, 'Not The Doctor', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (49, 'Wake Up', 'Alanis Morissette & Glenn Ballard', 0.99),\n", " (50,\n", " 'You Oughta Know (Alternate)',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 0.99),\n", " (51, 'We Die Young', 'Jerry Cantrell', 0.99),\n", " (52, 'Man In The Box', 'Jerry Cantrell, Layne Staley', 0.99),\n", " (53, 'Sea Of Sorrow', 'Jerry Cantrell', 0.99),\n", " (54, 'Bleed The Freak', 'Jerry Cantrell', 0.99),\n", " (55, \"I Can't Remember\", 'Jerry Cantrell, Layne Staley', 0.99),\n", " (56, 'Love, Hate, Love', 'Jerry Cantrell, Layne Staley', 0.99),\n", " (57,\n", " \"It Ain't Like That\",\n", " 'Jerry Cantrell, Michael Starr, Sean Kinney',\n", " 0.99),\n", " (58, 'Sunshine', 'Jerry Cantrell', 0.99),\n", " (59, 'Put You Down', 'Jerry Cantrell', 0.99),\n", " (60, 'Confusion', 'Jerry Cantrell, Michael Starr, Layne Staley', 0.99),\n", " (61, 'I Know Somethin (Bout You)', 'Jerry Cantrell', 0.99),\n", " (62, 'Real Thing', 'Jerry Cantrell, Layne Staley', 0.99),\n", " (63, 'Desafinado', None, 0.99),\n", " (64, 'Garota De Ipanema', None, 0.99),\n", " (65, 'Samba De Uma Nota Só (One Note Samba)', None, 0.99),\n", " (66, 'Por Causa De Você', None, 0.99),\n", " (67, 'Ligia', None, 0.99),\n", " (68, 'Fotografia', None, 0.99),\n", " (69, 'Dindi (Dindi)', None, 0.99),\n", " (70, 'Se Todos Fossem Iguais A Você (Instrumental)', None, 0.99),\n", " (71, 'Falando De Amor', None, 0.99),\n", " (72, 'Angela', None, 0.99),\n", " (73, 'Corcovado (Quiet Nights Of Quiet Stars)', None, 0.99),\n", " (74, 'Outra Vez', None, 0.99),\n", " (75, 'O Boto (Bôto)', None, 0.99),\n", " (76, 'Canta, Canta Mais', None, 0.99),\n", " (77, 'Enter Sandman', 'Apocalyptica', 0.99),\n", " (78, 'Master Of Puppets', 'Apocalyptica', 0.99),\n", " (79, 'Harvester Of Sorrow', 'Apocalyptica', 0.99),\n", " (80, 'The Unforgiven', 'Apocalyptica', 0.99),\n", " (81, 'Sad But True', 'Apocalyptica', 0.99),\n", " (82, 'Creeping Death', 'Apocalyptica', 0.99),\n", " (83, 'Wherever I May Roam', 'Apocalyptica', 0.99),\n", " (84, 'Welcome Home (Sanitarium)', 'Apocalyptica', 0.99),\n", " (85, 'Cochise', 'Audioslave/Chris Cornell', 0.99),\n", " (86, 'Show Me How to Live', 'Audioslave/Chris Cornell', 0.99),\n", " (87, 'Gasoline', 'Audioslave/Chris Cornell', 0.99),\n", " (88, 'What You Are', 'Audioslave/Chris Cornell', 0.99),\n", " (89, 'Like a Stone', 'Audioslave/Chris Cornell', 0.99),\n", " (90, 'Set It Off', 'Audioslave/Chris Cornell', 0.99),\n", " (91, 'Shadow on the Sun', 'Audioslave/Chris Cornell', 0.99),\n", " (92, 'I am the Highway', 'Audioslave/Chris Cornell', 0.99),\n", " (93, 'Exploder', 'Audioslave/Chris Cornell', 0.99),\n", " (94, 'Hypnotize', 'Audioslave/Chris Cornell', 0.99),\n", " (95, \"Bring'em Back Alive\", 'Audioslave/Chris Cornell', 0.99),\n", " (96, 'Light My Way', 'Audioslave/Chris Cornell', 0.99),\n", " (97, 'Getaway Car', 'Audioslave/Chris Cornell', 0.99),\n", " (98, 'The Last Remaining Light', 'Audioslave/Chris Cornell', 0.99),\n", " (99, 'Your Time Has Come', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (100, 'Out Of Exile', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (101, 'Be Yourself', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (102, \"Doesn't Remind Me\", 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (103, 'Drown Me Slowly', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (104, \"Heaven's Dead\", 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (105, 'The Worm', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (106, 'Man Or Animal', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (107, 'Yesterday To Tomorrow', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (108, 'Dandelion', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (109, '#1 Zero', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (110, 'The Curse', 'Cornell, Commerford, Morello, Wilk', 0.99),\n", " (111, 'Money', 'Berry Gordy, Jr./Janie Bradford', 0.99),\n", " (112,\n", " 'Long Tall Sally',\n", " 'Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell',\n", " 0.99),\n", " (113, 'Bad Boy', 'Larry Williams', 0.99),\n", " (114, 'Twist And Shout', 'Bert Russell/Phil Medley', 0.99),\n", " (115,\n", " 'Please Mr. Postman',\n", " 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett',\n", " 0.99),\n", " (116, \"C'Mon Everybody\", 'Eddie Cochran/Jerry Capehart', 0.99),\n", " (117, \"Rock 'N' Roll Music\", 'Chuck Berry', 0.99),\n", " (118, 'Slow Down', 'Larry Williams', 0.99),\n", " (119, 'Roadrunner', 'Bo Diddley', 0.99),\n", " (120, 'Carol', 'Chuck Berry', 0.99),\n", " (121, 'Good Golly Miss Molly', 'Little Richard', 0.99),\n", " (122, '20 Flight Rock', 'Ned Fairchild', 0.99),\n", " (123, 'Quadrant', 'Billy Cobham', 0.99),\n", " (124, \"Snoopy's search-Red baron\", 'Billy Cobham', 0.99),\n", " (125, 'Spanish moss-\"A sound portrait\"-Spanish moss', 'Billy Cobham', 0.99),\n", " (126, 'Moon germs', 'Billy Cobham', 0.99),\n", " (127, 'Stratus', 'Billy Cobham', 0.99),\n", " (128, 'The pleasant pheasant', 'Billy Cobham', 0.99),\n", " (129, 'Solo-Panhandler', 'Billy Cobham', 0.99),\n", " (130, 'Do what cha wanna', 'George Duke', 0.99),\n", " (131, 'Intro/ Low Down', None, 0.99),\n", " (132, '13 Years Of Grief', None, 0.99),\n", " (133, 'Stronger Than Death', None, 0.99),\n", " (134, 'All For You', None, 0.99),\n", " (135, 'Super Terrorizer', None, 0.99),\n", " (136, 'Phoney Smile Fake Hellos', None, 0.99),\n", " (137, 'Lost My Better Half', None, 0.99),\n", " (138, 'Bored To Tears', None, 0.99),\n", " (139, 'A.N.D.R.O.T.A.Z.', None, 0.99),\n", " (140, 'Born To Booze', None, 0.99),\n", " (141, 'World Of Trouble', None, 0.99),\n", " (142, 'No More Tears', None, 0.99),\n", " (143, 'The Begining... At Last', None, 0.99),\n", " (144, 'Heart Of Gold', None, 0.99),\n", " (145, 'Snowblind', None, 0.99),\n", " (146, 'Like A Bird', None, 0.99),\n", " (147, 'Blood In The Wall', None, 0.99),\n", " (148, 'The Beginning...At Last', None, 0.99),\n", " (149, 'Black Sabbath', None, 0.99),\n", " (150, 'The Wizard', None, 0.99),\n", " (151, 'Behind The Wall Of Sleep', None, 0.99),\n", " (152, 'N.I.B.', None, 0.99),\n", " (153, 'Evil Woman', None, 0.99),\n", " (154, 'Sleeping Village', None, 0.99),\n", " (155, 'Warning', None, 0.99),\n", " (156,\n", " 'Wheels Of Confusion / The Straightener',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (157,\n", " \"Tomorrow's Dream\",\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (158, 'Changes', 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 0.99),\n", " (159, 'FX', 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 0.99),\n", " (160,\n", " 'Supernaut',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (161,\n", " 'Snowblind',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (162,\n", " 'Cornucopia',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (163,\n", " 'Laguna Sunrise',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (164,\n", " 'St. Vitus Dance',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (165,\n", " 'Under The Sun/Every Day Comes and Goes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (166, 'Smoked Pork', None, 0.99),\n", " (167, \"Body Count's In The House\", None, 0.99),\n", " (168, 'Now Sports', None, 0.99),\n", " (169, 'Body Count', None, 0.99),\n", " (170, 'A Statistic', None, 0.99),\n", " (171, 'Bowels Of The Devil', None, 0.99),\n", " (172, 'The Real Problem', None, 0.99),\n", " (173, 'KKK Bitch', None, 0.99),\n", " (174, 'D Note', None, 0.99),\n", " (175, 'Voodoo', None, 0.99),\n", " (176, 'The Winner Loses', None, 0.99),\n", " (177, 'There Goes The Neighborhood', None, 0.99),\n", " (178, 'Oprah', None, 0.99),\n", " (179, 'Evil Dick', None, 0.99),\n", " (180, 'Body Count Anthem', None, 0.99),\n", " (181, \"Momma's Gotta Die Tonight\", None, 0.99),\n", " (182, 'Freedom Of Speech', None, 0.99),\n", " (183, 'King In Crimson', 'Roy Z', 0.99),\n", " (184, 'Chemical Wedding', 'Roy Z', 0.99),\n", " (185, 'The Tower', 'Roy Z', 0.99),\n", " (186, 'Killing Floor', 'Adrian Smith', 0.99),\n", " (187, 'Book Of Thel', 'Eddie Casillas/Roy Z', 0.99),\n", " (188, 'Gates Of Urizen', 'Roy Z', 0.99),\n", " (189, 'Jerusalem', 'Roy Z', 0.99),\n", " (190, 'Trupets Of Jericho', 'Roy Z', 0.99),\n", " (191, 'Machine Men', 'Adrian Smith', 0.99),\n", " (192, 'The Alchemist', 'Roy Z', 0.99),\n", " (193, 'Realword', 'Roy Z', 0.99),\n", " (194, 'First Time I Met The Blues', 'Eurreal Montgomery', 0.99),\n", " (195, 'Let Me Love You Baby', 'Willie Dixon', 0.99),\n", " (196, 'Stone Crazy', 'Buddy Guy', 0.99),\n", " (197, 'Pretty Baby', 'Willie Dixon', 0.99),\n", " (198, 'When My Left Eye Jumps', 'Al Perkins/Willie Dixon', 0.99),\n", " (199, 'Leave My Girl Alone', 'Buddy Guy', 0.99),\n", " (200, 'She Suits Me To A Tee', 'Buddy Guy', 0.99),\n", " (201,\n", " 'Keep It To Myself (Aka Keep It To Yourself)',\n", " 'Sonny Boy Williamson [I]',\n", " 0.99),\n", " (202,\n", " 'My Time After Awhile',\n", " 'Robert Geddins/Ron Badger/Sheldon Feinberg',\n", " 0.99),\n", " (203, 'Too Many Ways (Alternate)', 'Willie Dixon', 0.99),\n", " (204, \"Talkin' 'Bout Women Obviously\", 'Amos Blakemore/Buddy Guy', 0.99),\n", " (205, 'Jorge Da Capadócia', 'Jorge Ben', 0.99),\n", " (206, 'Prenda Minha', 'Tradicional', 0.99),\n", " (207, 'Meditação', 'Tom Jobim - Newton Mendoça', 0.99),\n", " (208, 'Terra', 'Caetano Veloso', 0.99),\n", " (209, 'Eclipse Oculto', 'Caetano Veloso', 0.99),\n", " (210, 'Texto \"Verdade Tropical\"', 'Caetano Veloso', 0.99),\n", " (211, 'Bem Devagar', 'Gilberto Gil', 0.99),\n", " (212, 'Drão', 'Gilberto Gil', 0.99),\n", " (213, 'Saudosismo', 'Caetano Veloso', 0.99),\n", " (214, 'Carolina', 'Chico Buarque', 0.99),\n", " (215, 'Sozinho', 'Peninha', 0.99),\n", " (216, 'Esse Cara', 'Caetano Veloso', 0.99),\n", " (217, 'Mel', 'Caetano Veloso - Waly Salomão', 0.99),\n", " (218, 'Linha Do Equador', 'Caetano Veloso - Djavan', 0.99),\n", " (219, 'Odara', 'Caetano Veloso', 0.99),\n", " (220, 'A Luz De Tieta', 'Caetano Veloso', 0.99),\n", " (221,\n", " 'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu',\n", " 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto',\n", " 0.99),\n", " (222, 'Vida Boa', 'Fausto Nilo - Armandinho', 0.99),\n", " (223, 'Sozinho (Hitmakers Classic Mix)', None, 0.99),\n", " (224, 'Sozinho (Hitmakers Classic Radio Edit)', None, 0.99),\n", " (225, \"Sozinho (Caêdrum 'n' Bass)\", None, 0.99),\n", " (226, 'Carolina', None, 0.99),\n", " (227, 'Essa Moça Ta Diferente', None, 0.99),\n", " (228, 'Vai Passar', None, 0.99),\n", " (229, 'Samba De Orly', None, 0.99),\n", " (230, 'Bye, Bye Brasil', None, 0.99),\n", " (231, 'Atras Da Porta', None, 0.99),\n", " (232, 'Tatuagem', None, 0.99),\n", " (233, 'O Que Será (À Flor Da Terra)', None, 0.99),\n", " (234, 'Morena De Angola', None, 0.99),\n", " (235, 'Apesar De Você', None, 0.99),\n", " (236, 'A Banda', None, 0.99),\n", " (237, 'Minha Historia', None, 0.99),\n", " (238, 'Com Açúcar E Com Afeto', None, 0.99),\n", " (239, 'Brejo Da Cruz', None, 0.99),\n", " (240, 'Meu Caro Amigo', None, 0.99),\n", " (241, 'Geni E O Zepelim', None, 0.99),\n", " (242, 'Trocando Em Miúdos', None, 0.99),\n", " (243, 'Vai Trabalhar Vagabundo', None, 0.99),\n", " (244, \"Gota D'água\", None, 0.99),\n", " (245, 'Construção / Deus Lhe Pague', None, 0.99),\n", " (246, 'Mateus Enter', 'Chico Science', 0.99),\n", " (247, 'O Cidadão Do Mundo', 'Chico Science', 0.99),\n", " (248, 'Etnia', 'Chico Science', 0.99),\n", " (249, 'Quilombo Groove [Instrumental]', 'Chico Science', 0.99),\n", " (250, 'Macô', 'Chico Science', 0.99),\n", " (251, 'Um Passeio No Mundo Livre', 'Chico Science', 0.99),\n", " (252, 'Samba Do Lado', 'Chico Science', 0.99),\n", " (253, 'Maracatu Atômico', 'Chico Science', 0.99),\n", " (254,\n", " 'O Encontro De Isaac Asimov Com Santos Dumont No Céu',\n", " 'Chico Science',\n", " 0.99),\n", " (255, 'Corpo De Lama', 'Chico Science', 0.99),\n", " (256, 'Sobremesa', 'Chico Science', 0.99),\n", " (257, 'Manguetown', 'Chico Science', 0.99),\n", " (258, 'Um Satélite Na Cabeça', 'Chico Science', 0.99),\n", " (259, 'Baião Ambiental [Instrumental]', 'Chico Science', 0.99),\n", " (260, 'Sangue De Bairro', 'Chico Science', 0.99),\n", " (261, 'Enquanto O Mundo Explode', 'Chico Science', 0.99),\n", " (262, 'Interlude Zumbi', 'Chico Science', 0.99),\n", " (263, 'Criança De Domingo', 'Chico Science', 0.99),\n", " (264, 'Amor De Muito', 'Chico Science', 0.99),\n", " (265, 'Samidarish [Instrumental]', 'Chico Science', 0.99),\n", " (266, 'Maracatu Atômico [Atomic Version]', 'Chico Science', 0.99),\n", " (267, 'Maracatu Atômico [Ragga Mix]', 'Chico Science', 0.99),\n", " (268, 'Maracatu Atômico [Trip Hop]', 'Chico Science', 0.99),\n", " (269, 'Banditismo Por Uma Questa', None, 0.99),\n", " (270, 'Banditismo Por Uma Questa', None, 0.99),\n", " (271, 'Rios Pontes & Overdrives', None, 0.99),\n", " (272, 'Cidade', None, 0.99),\n", " (273, 'Praiera', None, 0.99),\n", " (274, 'Samba Makossa', None, 0.99),\n", " (275, 'Da Lama Ao Caos', None, 0.99),\n", " (276, 'Maracatu De Tiro Certeiro', None, 0.99),\n", " (277, 'Salustiano Song', None, 0.99),\n", " (278, 'Antene Se', None, 0.99),\n", " (279, 'Risoflora', None, 0.99),\n", " (280, 'Lixo Do Mangue', None, 0.99),\n", " (281, 'Computadores Fazem Arte', None, 0.99),\n", " (282, 'Girassol', 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido', 0.99),\n", " (283, 'A Sombra Da Maldade', 'Da Gama/Toni Garrido', 0.99),\n", " (284, 'Johnny B. Goode', 'Chuck Berry', 0.99),\n", " (285, 'Soldado Da Paz', 'Herbert Vianna', 0.99),\n", " (286,\n", " 'Firmamento',\n", " 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers',\n", " 0.99),\n", " (287, 'Extra', 'Gilberto Gil', 0.99),\n", " (288,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 0.99),\n", " (289, 'Podes Crer', 'Bino Farias/Da Gama/Lazão/Toni Garrido', 0.99),\n", " (290, 'A Estrada', 'Bino Farias/Da Gama/Lazão/Toni Garrido', 0.99),\n", " (291, 'Berlim', 'Da Gama/Toni Garrido', 0.99),\n", " (292, 'Já Foi', 'Bino Farias/Da Gama/Lazão/Toni Garrido', 0.99),\n", " (293, 'Onde Você Mora?', 'Marisa Monte/Nando Reis', 0.99),\n", " (294, 'Pensamento', 'Bino Farias/Da Gamma/Lazão/Rás Bernard', 0.99),\n", " (295, 'Conciliação', 'Da Gama/Lazão/Rás Bernardo', 0.99),\n", " (296, 'Realidade Virtual', 'Bino Farias/Da Gama/Lazão/Toni Garrido', 0.99),\n", " (297, 'Mensagem', 'Bino Farias/Da Gama/Lazão/Rás Bernardo', 0.99),\n", " (298, 'A Cor Do Sol', 'Bernardo Vilhena/Da Gama/Lazão', 0.99),\n", " (299, 'Onde Você Mora?', 'Marisa Monte/Nando Reis', 0.99),\n", " (300, 'O Erê', 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido', 0.99),\n", " (301, 'A Sombra Da Maldade', 'Da Gama/Toni Garrido', 0.99),\n", " (302, 'A Estrada', 'Da Gama/Lazao/Toni Garrido', 0.99),\n", " (303, 'Falar A Verdade', 'Bino/Da Gama/Ras Bernardo', 0.99),\n", " (304, 'Firmamento', 'Harry Lawes/Winston Foster-Vers', 0.99),\n", " (305, 'Pensamento', 'Bino/Da Gama/Ras Bernardo', 0.99),\n", " (306, 'Realidade Virtual', 'Bino/Da Gamma/Lazao/Toni Garrido', 0.99),\n", " (307, 'Doutor', 'Bino/Da Gama/Toni Garrido', 0.99),\n", " (308, 'Na Frente Da TV', 'Bino/Da Gama/Lazao/Ras Bernardo', 0.99),\n", " (309, 'Downtown', 'Cidade Negra', 0.99),\n", " (310, 'Sábado A Noite', 'Lulu Santos', 0.99),\n", " (311, 'A Cor Do Sol', 'Bernardo Vilhena/Da Gama/Lazao', 0.99),\n", " (312,\n", " 'Eu Também Quero Beijar',\n", " 'Fausto Nilo/Moraes Moreira/Pepeu Gomes',\n", " 0.99),\n", " (313, 'Noite Do Prazer', None, 0.99),\n", " (314, 'À Francesa', None, 0.99),\n", " (315, 'Cada Um Cada Um (A Namoradeira)', None, 0.99),\n", " (316, 'Linha Do Equador', None, 0.99),\n", " (317, 'Amor Demais', None, 0.99),\n", " (318, 'Férias', None, 0.99),\n", " (319, 'Gostava Tanto De Você', None, 0.99),\n", " (320, 'Flor Do Futuro', None, 0.99),\n", " (321, 'Felicidade Urgente', None, 0.99),\n", " (322, 'Livre Pra Viver', None, 0.99),\n", " (323,\n", " 'Dig-Dig, Lambe-Lambe (Ao Vivo)',\n", " 'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa',\n", " 0.99),\n", " (324, 'Pererê', 'Augusto Conceição/Chiclete Com Banana', 0.99),\n", " (325, 'TriboTchan', 'Cal Adan/Paulo Levi', 0.99),\n", " (326, 'Tapa Aqui, Descobre Ali', 'Paulo Levi/W. Rangel', 0.99),\n", " (327, 'Daniela', 'Jorge Cardoso/Pierre Onasis', 0.99),\n", " (328, 'Bate Lata', 'Fábio Nolasco/Gal Sales/Ivan Brasil', 0.99),\n", " (329,\n", " 'Garotas do Brasil',\n", " 'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira',\n", " 0.99),\n", " (330, 'Levada do Amor (Ailoviu)', 'Luiz Wanderley/Paulo Levi', 0.99),\n", " (331, 'Lavadeira', 'Do Vale, Valverde/Gal Oliveira/Luciano Pinto', 0.99),\n", " (332,\n", " 'Reboladeira',\n", " 'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill',\n", " 0.99),\n", " (333, 'É que Nessa Encarnação Eu Nasci Manga', 'Lucina/Luli', 0.99),\n", " (334, 'Reggae Tchan', 'Cal Adan/Del Rey, Tension/Edu Casanova', 0.99),\n", " (335, 'My Love', 'Jauperi/Zeu Góes', 0.99),\n", " (336, 'Latinha de Cerveja', 'Adriano Bernandes/Edmar Neves', 0.99),\n", " (337, 'You Shook Me', 'J B Lenoir/Willie Dixon', 0.99),\n", " (338, \"I Can't Quit You Baby\", 'Willie Dixon', 0.99),\n", " (339,\n", " 'Communication Breakdown',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 0.99),\n", " (340, 'Dazed and Confused', 'Jimmy Page', 0.99),\n", " (341,\n", " 'The Girl I Love She Got Long Black Wavy Hair',\n", " 'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant',\n", " 0.99),\n", " (342, 'What is and Should Never Be', 'Jimmy Page/Robert Plant', 0.99),\n", " (343,\n", " 'Communication Breakdown(2)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 0.99),\n", " (344,\n", " 'Travelling Riverside Blues',\n", " 'Jimmy Page/Robert Johnson/Robert Plant',\n", " 0.99),\n", " (345,\n", " 'Whole Lotta Love',\n", " 'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon',\n", " 0.99),\n", " (346, \"Somethin' Else\", 'Bob Cochran/Sharon Sheeley', 0.99),\n", " (347,\n", " 'Communication Breakdown(3)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 0.99),\n", " (348, \"I Can't Quit You Baby(2)\", 'Willie Dixon', 0.99),\n", " (349, 'You Shook Me(2)', 'J B Lenoir/Willie Dixon', 0.99),\n", " (350,\n", " 'How Many More Times',\n", " 'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant',\n", " 0.99),\n", " (351, 'Debra Kadabra', 'Frank Zappa', 0.99),\n", " (352, 'Carolina Hard-Core Ecstasy', 'Frank Zappa', 0.99),\n", " (353, 'Sam With The Showing Scalp Flat Top', 'Don Van Vliet', 0.99),\n", " (354, \"Poofter's Froth Wyoming Plans Ahead\", 'Frank Zappa', 0.99),\n", " (355, '200 Years Old', 'Frank Zappa', 0.99),\n", " (356, 'Cucamonga', 'Frank Zappa', 0.99),\n", " (357, 'Advance Romance', 'Frank Zappa', 0.99),\n", " (358, 'Man With The Woman Head', 'Don Van Vliet', 0.99),\n", " (359, 'Muffin Man', 'Frank Zappa', 0.99),\n", " (360, 'Vai-Vai 2001', None, 0.99),\n", " (361, 'X-9 2001', None, 0.99),\n", " (362, 'Gavioes 2001', None, 0.99),\n", " (363, 'Nene 2001', None, 0.99),\n", " (364, 'Rosas De Ouro 2001', None, 0.99),\n", " (365, 'Mocidade Alegre 2001', None, 0.99),\n", " (366, 'Camisa Verde 2001', None, 0.99),\n", " (367, 'Leandro De Itaquera 2001', None, 0.99),\n", " (368, 'Tucuruvi 2001', None, 0.99),\n", " (369, 'Aguia De Ouro 2001', None, 0.99),\n", " (370, 'Ipiranga 2001', None, 0.99),\n", " (371, 'Morro Da Casa Verde 2001', None, 0.99),\n", " (372, 'Perola Negra 2001', None, 0.99),\n", " (373, 'Sao Lucas 2001', None, 0.99),\n", " (374, 'Guanabara', 'Marcos Valle', 0.99),\n", " (375, 'Mas Que Nada', 'Jorge Ben', 0.99),\n", " (376, 'Vôo Sobre o Horizonte', 'J.r.Bertami/Parana', 0.99),\n", " (377, 'A Paz', 'Donato/Gilberto Gil', 0.99),\n", " (378, 'Wave (Vou te Contar)', 'Antonio Carlos Jobim', 0.99),\n", " (379, 'Água de Beber', 'Antonio Carlos Jobim/Vinicius de Moraes', 0.99),\n", " (380, 'Samba da Bençaco', 'Baden Powell/Vinicius de Moraes', 0.99),\n", " (381, 'Pode Parar', 'Jorge Vercilo/Jota Maranhao', 0.99),\n", " (382, 'Menino do Rio', 'Caetano Veloso', 0.99),\n", " (383, 'Ando Meio Desligado', 'Caetano Veloso', 0.99),\n", " (384, 'Mistério da Raça', 'Luiz Melodia/Ricardo Augusto', 0.99),\n", " (385, 'All Star', 'Nando Reis', 0.99),\n", " (386, 'Menina Bonita', 'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo', 0.99),\n", " (387, 'Pescador de Ilusões', 'Macelo Yuka/O Rappa', 0.99),\n", " (388, 'À Vontade (Live Mix)', 'Bombom/Ed Motta', 0.99),\n", " (389, 'Maria Fumaça', 'Luiz Carlos/Oberdan', 0.99),\n", " (390, 'Sambassim (dj patife remix)', 'Alba Carvalho/Fernando Porto', 0.99),\n", " (391, 'Garota De Ipanema', 'Vários', 0.99),\n", " (392, 'Tim Tim Por Tim Tim', 'Vários', 0.99),\n", " (393, 'Tarde Em Itapoã', 'Vários', 0.99),\n", " (394, 'Tanto Tempo', 'Vários', 0.99),\n", " (395, 'Eu Vim Da Bahia - Live', 'Vários', 0.99),\n", " (396, 'Alô Alô Marciano', 'Vários', 0.99),\n", " (397, 'Linha Do Horizonte', 'Vários', 0.99),\n", " (398, 'Only A Dream In Rio', 'Vários', 0.99),\n", " (399, 'Abrir A Porta', 'Vários', 0.99),\n", " (400, 'Alice', 'Vários', 0.99),\n", " (401, 'Momentos Que Marcam', 'Vários', 0.99),\n", " (402, 'Um Jantar Pra Dois', 'Vários', 0.99),\n", " (403, 'Bumbo Da Mangueira', 'Vários', 0.99),\n", " (404, 'Mr Funk Samba', 'Vários', 0.99),\n", " (405, 'Santo Antonio', 'Vários', 0.99),\n", " (406, 'Por Você', 'Vários', 0.99),\n", " (407, 'Só Tinha De Ser Com Você', 'Vários', 0.99),\n", " (408, 'Free Speech For The Dumb', 'Molaney/Morris/Roberts/Wainwright', 0.99),\n", " (409, \"It's Electric\", 'Harris/Tatler', 0.99),\n", " (410, 'Sabbra Cadabra', 'Black Sabbath', 0.99),\n", " (411, 'Turn The Page', 'Seger', 0.99),\n", " (412, 'Die Die My Darling', 'Danzig', 0.99),\n", " (413, 'Loverman', 'Cave', 0.99),\n", " (414, 'Mercyful Fate', 'Diamond/Shermann', 0.99),\n", " (415, 'Astronomy', 'A.Bouchard/J.Bouchard/S.Pearlman', 0.99),\n", " (416, 'Whiskey In The Jar', 'Traditional', 0.99),\n", " (417, \"Tuesday's Gone\", 'Collins/Van Zandt', 0.99),\n", " (418, 'The More I See', 'Molaney/Morris/Roberts/Wainwright', 0.99),\n", " (419, 'A Kind Of Magic', 'Roger Taylor', 0.99),\n", " (420, 'Under Pressure', 'Queen & David Bowie', 0.99),\n", " (421, 'Radio GA GA', 'Roger Taylor', 0.99),\n", " (422, 'I Want It All', 'Queen', 0.99),\n", " (423, 'I Want To Break Free', 'John Deacon', 0.99),\n", " (424, 'Innuendo', 'Queen', 0.99),\n", " (425, \"It's A Hard Life\", 'Freddie Mercury', 0.99),\n", " (426, 'Breakthru', 'Queen', 0.99),\n", " (427, 'Who Wants To Live Forever', 'Brian May', 0.99),\n", " (428, 'Headlong', 'Queen', 0.99),\n", " (429, 'The Miracle', 'Queen', 0.99),\n", " (430, \"I'm Going Slightly Mad\", 'Queen', 0.99),\n", " (431, 'The Invisible Man', 'Queen', 0.99),\n", " (432, 'Hammer To Fall', 'Brian May', 0.99),\n", " (433, 'Friends Will Be Friends', 'Freddie Mercury & John Deacon', 0.99),\n", " (434, 'The Show Must Go On', 'Queen', 0.99),\n", " (435, 'One Vision', 'Queen', 0.99),\n", " (436, 'Detroit Rock City', 'Paul Stanley, B. Ezrin', 0.99),\n", " (437, 'Black Diamond', 'Paul Stanley', 0.99),\n", " (438, 'Hard Luck Woman', 'Paul Stanley', 0.99),\n", " (439, 'Sure Know Something', 'Paul Stanley, Vincent Poncia', 0.99),\n", " (440, 'Love Gun', 'Paul Stanley', 0.99),\n", " (441, 'Deuce', 'Gene Simmons', 0.99),\n", " (442, \"Goin' Blind\", 'Gene Simmons, S. Coronel', 0.99),\n", " (443, 'Shock Me', 'Ace Frehley', 0.99),\n", " (444, 'Do You Love Me', 'Paul Stanley, B. Ezrin, K. Fowley', 0.99),\n", " (445, 'She', 'Gene Simmons, S. Coronel', 0.99),\n", " (446,\n", " 'I Was Made For Loving You',\n", " 'Paul Stanley, Vincent Poncia, Desmond Child',\n", " 0.99),\n", " (447, 'Shout It Out Loud', 'Paul Stanley, Gene Simmons, B. Ezrin', 0.99),\n", " (448, 'God Of Thunder', 'Paul Stanley', 0.99),\n", " (449, 'Calling Dr. Love', 'Gene Simmons', 0.99),\n", " (450, 'Beth', 'S. Penridge, Bob Ezrin, Peter Criss', 0.99),\n", " (451, 'Strutter', 'Paul Stanley, Gene Simmons', 0.99),\n", " (452, 'Rock And Roll All Nite', 'Paul Stanley, Gene Simmons', 0.99),\n", " (453, 'Cold Gin', 'Ace Frehley', 0.99),\n", " (454, 'Plaster Caster', 'Gene Simmons', 0.99),\n", " (455,\n", " \"God Gave Rock 'n' Roll To You\",\n", " 'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin',\n", " 0.99),\n", " (456, 'Heart of the Night', None, 0.99),\n", " (457, 'De La Luz', None, 0.99),\n", " (458, 'Westwood Moon', None, 0.99),\n", " (459, 'Midnight', None, 0.99),\n", " (460, 'Playtime', None, 0.99),\n", " (461, 'Surrender', None, 0.99),\n", " (462, \"Valentino's\", None, 0.99),\n", " (463, 'Believe', None, 0.99),\n", " (464, 'As We Sleep', None, 0.99),\n", " (465, 'When Evening Falls', None, 0.99),\n", " (466, 'J Squared', None, 0.99),\n", " (467, 'Best Thing', None, 0.99),\n", " (468, 'Maria', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (469,\n", " 'Poprocks And Coke',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (470, 'Longview', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (471,\n", " 'Welcome To Paradise',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (472, 'Basket Case', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (473,\n", " 'When I Come Around',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (474, 'She', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (475,\n", " 'J.A.R. (Jason Andrew Relva)',\n", " 'Mike Dirnt -Words Green Day -Music',\n", " 0.99),\n", " (476,\n", " 'Geek Stink Breath',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (477, 'Brain Stew', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (478, 'Jaded', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (479,\n", " 'Walking Contradiction',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (480, 'Stuck With Me', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (481,\n", " \"Hitchin' A Ride\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (482,\n", " 'Good Riddance (Time Of Your Life)',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (483, 'Redundant', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (484,\n", " 'Nice Guys Finish Last',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (485, 'Minority', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (486, 'Warning', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (487, 'Waiting', 'Billie Joe Armstrong -Words Green Day -Music', 0.99),\n", " (488,\n", " \"Macy's Day Parade\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 0.99),\n", " (489, 'Into The Light', 'David Coverdale', 0.99),\n", " (490, 'River Song', 'David Coverdale', 0.99),\n", " (491, 'She Give Me ...', 'David Coverdale', 0.99),\n", " (492, \"Don't You Cry\", 'David Coverdale', 0.99),\n", " (493, 'Love Is Blind', 'David Coverdale/Earl Slick', 0.99),\n", " (494, 'Slave', 'David Coverdale/Earl Slick', 0.99),\n", " (495, 'Cry For Love', 'Bossi/David Coverdale/Earl Slick', 0.99),\n", " (496, 'Living On Love', 'Bossi/David Coverdale/Earl Slick', 0.99),\n", " (497, 'Midnight Blue', 'David Coverdale/Earl Slick', 0.99),\n", " (498, 'Too Many Tears', 'Adrian Vanderberg/David Coverdale', 0.99),\n", " (499, \"Don't Lie To Me\", 'David Coverdale/Earl Slick', 0.99),\n", " (500, 'Wherever You May Go', 'David Coverdale', 0.99),\n", " (501, 'Grito De Alerta', 'Gonzaga Jr.', 0.99),\n", " (502, 'Não Dá Mais Pra Segurar (Explode Coração)', None, 0.99),\n", " (503, 'Começaria Tudo Outra Vez', None, 0.99),\n", " (504, 'O Que É O Que É ?', None, 0.99),\n", " (505, 'Sangrando', 'Gonzaga Jr/Gonzaguinha', 0.99),\n", " (506, 'Diga Lá, Coração', None, 0.99),\n", " (507, 'Lindo Lago Do Amor', 'Gonzaga Jr.', 0.99),\n", " (508, 'Eu Apenas Queria Que Voçê Soubesse', None, 0.99),\n", " (509, 'Com A Perna No Mundo', 'Gonzaga Jr.', 0.99),\n", " (510, 'E Vamos À Luta', None, 0.99),\n", " (511, 'Um Homem Também Chora (Guerreiro Menino)', None, 0.99),\n", " (512, 'Comportamento Geral', 'Gonzaga Jr', 0.99),\n", " (513, 'Ponto De Interrogação', None, 0.99),\n", " (514, 'Espere Por Mim, Morena', 'Gonzaguinha', 0.99),\n", " (515, 'Meia-Lua Inteira', None, 0.99),\n", " (516, 'Voce e Linda', None, 0.99),\n", " (517, 'Um Indio', None, 0.99),\n", " (518, 'Podres Poderes', None, 0.99),\n", " (519, 'Voce Nao Entende Nada - Cotidiano', None, 0.99),\n", " (520, 'O Estrangeiro', None, 0.99),\n", " (521, 'Menino Do Rio', None, 0.99),\n", " (522, 'Qualquer Coisa', None, 0.99),\n", " (523, 'Sampa', None, 0.99),\n", " (524, 'Queixa', None, 0.99),\n", " (525, 'O Leaozinho', None, 0.99),\n", " (526, 'Fora Da Ordem', None, 0.99),\n", " (527, 'Terra', None, 0.99),\n", " (528, 'Alegria, Alegria', None, 0.99),\n", " (529, 'Balada Do Louco', 'Arnaldo Baptista - Rita Lee', 0.99),\n", " (530,\n", " 'Ando Meio Desligado',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 0.99),\n", " (531, 'Top Top', 'Os Mutantes - Arnolpho Lima Filho', 0.99),\n", " (532, 'Baby', 'Caetano Veloso', 0.99),\n", " (533, 'A E O Z', 'Mutantes', 0.99),\n", " (534, 'Panis Et Circenses', 'Caetano Veloso - Gilberto Gil', 0.99),\n", " (535, 'Chão De Estrelas', 'Orestes Barbosa-Sílvio Caldas', 0.99),\n", " (536,\n", " 'Vida De Cachorro',\n", " 'Rita Lee - Arnaldo Baptista - Sérgio Baptista',\n", " 0.99),\n", " (537, 'Bat Macumba', 'Gilberto Gil - Caetano Veloso', 0.99),\n", " (538, 'Desculpe Babe', 'Arnaldo Baptista - Rita Lee', 0.99),\n", " (539, 'Rita Lee', 'Arnaldo Baptista/Rita Lee/Sérgio Dias', 0.99),\n", " (540,\n", " 'Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll',\n", " 'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho',\n", " 0.99),\n", " (541,\n", " 'Banho De Lua',\n", " 'B. de Filippi - F. Migliaci - Versão: Fred Jorge',\n", " 0.99),\n", " (542,\n", " 'Meu Refrigerador Não Funciona',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 0.99),\n", " (543, 'Burn', 'Coverdale/Lord/Paice', 0.99),\n", " (544, 'Stormbringer', 'Coverdale', 0.99),\n", " (545, 'Gypsy', 'Coverdale/Hughes/Lord/Paice', 0.99),\n", " (546, 'Lady Double Dealer', 'Coverdale', 0.99),\n", " (547, 'Mistreated', 'Coverdale', 0.99),\n", " (548, 'Smoke On The Water', 'Gillan/Glover/Lord/Paice', 0.99),\n", " (549, 'You Fool No One', 'Coverdale/Lord/Paice', 0.99),\n", " (550, 'Custard Pie', 'Jimmy Page/Robert Plant', 0.99),\n", " (551, 'The Rover', 'Jimmy Page/Robert Plant', 0.99),\n", " (552, 'In My Time Of Dying', 'John Bonham/John Paul Jones', 0.99),\n", " (553, 'Houses Of The Holy', 'Jimmy Page/Robert Plant', 0.99),\n", " (554, 'Trampled Under Foot', 'John Paul Jones', 0.99),\n", " (555, 'Kashmir', 'John Bonham', 0.99),\n", " (556, 'Imperatriz', 'Guga/Marquinho Lessa/Tuninho Professor', 0.99),\n", " (557, 'Beija-Flor', 'Caruso/Cleber/Deo/Osmar', 0.99),\n", " (558,\n", " 'Viradouro',\n", " 'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto',\n", " 0.99),\n", " (559, 'Mocidade', 'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do', 0.99),\n", " (560,\n", " 'Unidos Da Tijuca',\n", " 'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir',\n", " 0.99),\n", " (561,\n", " 'Salgueiro',\n", " 'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da',\n", " 0.99),\n", " (562, 'Mangueira', \"Bizuca/Clóvis Pê/Gilson Bernini/Marelo D'Aguia\", 0.99),\n", " (563,\n", " 'União Da Ilha',\n", " 'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André',\n", " 0.99),\n", " (564, 'Grande Rio', 'Carlos Santos/Ciro/Claudio Russo/Zé Luiz', 0.99),\n", " (565,\n", " 'Portela',\n", " 'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno',\n", " 0.99),\n", " (566, 'Caprichosos', 'Gule/Jorge 101/Lequinho/Luiz Piao', 0.99),\n", " (567, 'Tradição', 'Adalto Magalha/Lourenco', 0.99),\n", " (568,\n", " 'Império Serrano',\n", " 'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao',\n", " 0.99),\n", " (569,\n", " 'Tuiuti',\n", " 'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som',\n", " 0.99),\n", " (570, '(Da Le) Yaleo', 'Santana', 0.99),\n", " (571, 'Love Of My Life', 'Carlos Santana & Dave Matthews', 0.99),\n", " (572, 'Put Your Lights On', 'E. Shrody', 0.99),\n", " (573,\n", " 'Africa Bamba',\n", " 'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo',\n", " 0.99),\n", " (574, 'Smooth', 'M. Itaal Shur & Rob Thomas', 0.99),\n", " (575, 'Do You Like The Way', 'L. Hill', 0.99),\n", " (576,\n", " 'Maria Maria',\n", " 'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow',\n", " 0.99),\n", " (577, 'Migra', 'R. Taha, Carlos Santana & T. Lindsay', 0.99),\n", " (578, 'Corazon Espinado', 'F. Olivera', 0.99),\n", " (579,\n", " 'Wishing It Was',\n", " 'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita',\n", " 0.99),\n", " (580, 'El Farol', 'Carlos Santana & KC Porter', 0.99),\n", " (581, 'Primavera', 'KC Porter & JB Eckl', 0.99),\n", " (582, 'The Calling', 'Carlos Santana & C. Thompson', 0.99),\n", " (583, 'Solução', None, 0.99),\n", " (584, 'Manuel', None, 0.99),\n", " (585, 'Entre E Ouça', None, 0.99),\n", " (586, 'Um Contrato Com Deus', None, 0.99),\n", " (587, 'Um Jantar Pra Dois', None, 0.99),\n", " (588, 'Vamos Dançar', None, 0.99),\n", " (589, 'Um Love', None, 0.99),\n", " (590, 'Seis Da Tarde', None, 0.99),\n", " (591, 'Baixo Rio', None, 0.99),\n", " (592, 'Sombras Do Meu Destino', None, 0.99),\n", " (593, 'Do You Have Other Loves?', None, 0.99),\n", " (594, 'Agora Que O Dia Acordou', None, 0.99),\n", " (595, 'Já!!!', None, 0.99),\n", " (596, 'A Rua', None, 0.99),\n", " (597, \"Now's The Time\", 'Miles Davis', 0.99),\n", " (598, 'Jeru', 'Miles Davis', 0.99),\n", " (599, 'Compulsion', 'Miles Davis', 0.99),\n", " (600, 'Tempus Fugit', 'Miles Davis', 0.99),\n", " (601, \"Walkin'\", 'Miles Davis', 0.99),\n", " (602, \"'Round Midnight\", 'Miles Davis', 0.99),\n", " (603, 'Bye Bye Blackbird', 'Miles Davis', 0.99),\n", " (604, 'New Rhumba', 'Miles Davis', 0.99),\n", " (605, 'Generique', 'Miles Davis', 0.99),\n", " (606, 'Summertime', 'Miles Davis', 0.99),\n", " (607, 'So What', 'Miles Davis', 0.99),\n", " (608, 'The Pan Piper', 'Miles Davis', 0.99),\n", " (609, 'Someday My Prince Will Come', 'Miles Davis', 0.99),\n", " (610, 'My Funny Valentine (Live)', 'Miles Davis', 0.99),\n", " (611, 'E.S.P.', 'Miles Davis', 0.99),\n", " (612, 'Nefertiti', 'Miles Davis', 0.99),\n", " (613, 'Petits Machins (Little Stuff)', 'Miles Davis', 0.99),\n", " (614, 'Miles Runs The Voodoo Down', 'Miles Davis', 0.99),\n", " (615, 'Little Church (Live)', 'Miles Davis', 0.99),\n", " (616, 'Black Satin', 'Miles Davis', 0.99),\n", " (617, 'Jean Pierre (Live)', 'Miles Davis', 0.99),\n", " (618, 'Time After Time', 'Miles Davis', 0.99),\n", " (619, 'Portia', 'Miles Davis', 0.99),\n", " (620, \"Space Truckin'\", 'Blackmore/Gillan/Glover/Lord/Paice', 0.99),\n", " (621,\n", " 'Going Down / Highway Star',\n", " 'Gillan/Glover/Lord/Nix - Blackmore/Paice',\n", " 0.99),\n", " (622, 'Mistreated (Alternate Version)', 'Blackmore/Coverdale', 0.99),\n", " (623,\n", " 'You Fool No One (Alternate Version)',\n", " 'Blackmore/Coverdale/Lord/Paice',\n", " 0.99),\n", " (624, 'Jeepers Creepers', None, 0.99),\n", " (625, 'Blue Rythm Fantasy', None, 0.99),\n", " (626, 'Drum Boogie', None, 0.99),\n", " (627, 'Let Me Off Uptown', None, 0.99),\n", " (628, 'Leave Us Leap', None, 0.99),\n", " (629, 'Opus No.1', None, 0.99),\n", " (630, 'Boogie Blues', None, 0.99),\n", " (631, 'How High The Moon', None, 0.99),\n", " (632, 'Disc Jockey Jump', None, 0.99),\n", " (633, \"Up An' Atom\", None, 0.99),\n", " (634, 'Bop Boogie', None, 0.99),\n", " (635, 'Lemon Drop', None, 0.99),\n", " (636, 'Coronation Drop', None, 0.99),\n", " (637, 'Overtime', None, 0.99),\n", " (638, 'Imagination', None, 0.99),\n", " (639, \"Don't Take Your Love From Me\", None, 0.99),\n", " (640, 'Midget', None, 0.99),\n", " (641, \"I'm Coming Virginia\", None, 0.99),\n", " (642, \"Payin' Them Dues Blues\", None, 0.99),\n", " (643, 'Jungle Drums', None, 0.99),\n", " (644, 'Showcase', None, 0.99),\n", " (645, 'Swedish Schnapps', None, 0.99),\n", " (646, 'Samba Da Bênção', None, 0.99),\n", " (647, 'Pot-Pourri N.º 4', None, 0.99),\n", " (648, 'Onde Anda Você', None, 0.99),\n", " (649, 'Samba Da Volta', None, 0.99),\n", " (650, 'Canto De Ossanha', None, 0.99),\n", " (651, 'Pot-Pourri N.º 5', None, 0.99),\n", " (652, 'Formosa', None, 0.99),\n", " (653, 'Como É Duro Trabalhar', None, 0.99),\n", " (654, 'Minha Namorada', None, 0.99),\n", " (655, 'Por Que Será', None, 0.99),\n", " (656, 'Berimbau', None, 0.99),\n", " (657, 'Deixa', None, 0.99),\n", " (658, 'Pot-Pourri N.º 2', None, 0.99),\n", " (659, 'Samba Em Prelúdio', None, 0.99),\n", " (660, 'Carta Ao Tom 74', None, 0.99),\n", " (661, 'Linha de Passe (João Bosco)', None, 0.99),\n", " (662, 'Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)', None, 0.99),\n", " (663, 'Chão de Giz (Elba Ramalho)', None, 0.99),\n", " (664, 'Marina (Dorival Caymmi)', None, 0.99),\n", " (665, 'Aquarela (Toquinho)', None, 0.99),\n", " (666, 'Coração do Agreste (Fafá de Belém)', None, 0.99),\n", " (667, 'Dona (Roupa Nova)', None, 0.99),\n", " (668, 'Começaria Tudo Outra Vez (Maria Creuza)', None, 0.99),\n", " (669, 'Caçador de Mim (Sá & Guarabyra)', None, 0.99),\n", " (670, 'Romaria (Renato Teixeira)', None, 0.99),\n", " (671, 'As Rosas Não Falam (Beth Carvalho)', None, 0.99),\n", " (672, 'Wave (Os Cariocas)', None, 0.99),\n", " (673, 'Garota de Ipanema (Dick Farney)', None, 0.99),\n", " (674, 'Preciso Apender a Viver Só (Maysa)', None, 0.99),\n", " (675, 'Susie Q', 'Hawkins-Lewis-Broadwater', 0.99),\n", " (676, 'I Put A Spell On You', 'Jay Hawkins', 0.99),\n", " (677, 'Proud Mary', 'J. C. Fogerty', 0.99),\n", " (678, 'Bad Moon Rising', 'J. C. Fogerty', 0.99),\n", " (679, 'Lodi', 'J. C. Fogerty', 0.99),\n", " (680, 'Green River', 'J. C. Fogerty', 0.99),\n", " (681, 'Commotion', 'J. C. Fogerty', 0.99),\n", " (682, 'Down On The Corner', 'J. C. Fogerty', 0.99),\n", " (683, 'Fortunate Son', 'J. C. Fogerty', 0.99),\n", " (684, \"Travelin' Band\", 'J. C. Fogerty', 0.99),\n", " (685, \"Who'll Stop The Rain\", 'J. C. Fogerty', 0.99),\n", " (686, 'Up Around The Bend', 'J. C. Fogerty', 0.99),\n", " (687, 'Run Through The Jungle', 'J. C. Fogerty', 0.99),\n", " (688, \"Lookin' Out My Back Door\", 'J. C. Fogerty', 0.99),\n", " (689, 'Long As I Can See The Light', 'J. C. Fogerty', 0.99),\n", " (690, 'I Heard It Through The Grapevine', 'Whitfield-Strong', 0.99),\n", " (691, 'Have You Ever Seen The Rain?', 'J. C. Fogerty', 0.99),\n", " (692, 'Hey Tonight', 'J. C. Fogerty', 0.99),\n", " (693, 'Sweet Hitch-Hiker', 'J. C. Fogerty', 0.99),\n", " (694, 'Someday Never Comes', 'J. C. Fogerty', 0.99),\n", " (695, 'Walking On The Water', 'J.C. Fogerty', 0.99),\n", " (696, 'Suzie-Q, Pt. 2', 'J.C. Fogerty', 0.99),\n", " (697, 'Born On The Bayou', 'J.C. Fogerty', 0.99),\n", " (698, 'Good Golly Miss Molly', 'J.C. Fogerty', 0.99),\n", " (699, 'Tombstone Shadow', 'J.C. Fogerty', 0.99),\n", " (700, 'Wrote A Song For Everyone', 'J.C. Fogerty', 0.99),\n", " (701, 'Night Time Is The Right Time', 'J.C. Fogerty', 0.99),\n", " (702, 'Cotton Fields', 'J.C. Fogerty', 0.99),\n", " (703, 'It Came Out Of The Sky', 'J.C. Fogerty', 0.99),\n", " (704, \"Don't Look Now\", 'J.C. Fogerty', 0.99),\n", " (705, 'The Midnight Special', 'J.C. Fogerty', 0.99),\n", " (706, 'Before You Accuse Me', 'J.C. Fogerty', 0.99),\n", " (707, 'My Baby Left Me', 'J.C. Fogerty', 0.99),\n", " (708, 'Pagan Baby', 'J.C. Fogerty', 0.99),\n", " (709, '(Wish I Could) Hideaway', 'J.C. Fogerty', 0.99),\n", " (710, \"It's Just A Thought\", 'J.C. Fogerty', 0.99),\n", " (711, 'Molina', 'J.C. Fogerty', 0.99),\n", " (712, 'Born To Move', 'J.C. Fogerty', 0.99),\n", " (713, \"Lookin' For A Reason\", 'J.C. Fogerty', 0.99),\n", " (714, 'Hello Mary Lou', 'J.C. Fogerty', 0.99),\n", " (715, 'Gatas Extraordinárias', None, 0.99),\n", " (716, 'Brasil', None, 0.99),\n", " (717, 'Eu Sou Neguinha (Ao Vivo)', None, 0.99),\n", " (718, 'Geração Coca-Cola (Ao Vivo)', None, 0.99),\n", " (719, 'Lanterna Dos Afogados', None, 0.99),\n", " (720, 'Coroné Antonio Bento', None, 0.99),\n", " (721, 'Você Passa, Eu Acho Graça (Ao Vivo)', None, 0.99),\n", " (722, 'Meu Mundo Fica Completo (Com Você)', None, 0.99),\n", " (723, '1° De Julho', None, 0.99),\n", " (724, 'Música Urbana 2', None, 0.99),\n", " (725, 'Vida Bandida (Ao Vivo)', None, 0.99),\n", " (726, 'Palavras Ao Vento', None, 0.99),\n", " (727, 'Não Sei O Que Eu Quero Da Vida', None, 0.99),\n", " (728, 'Woman Is The Nigger Of The World (Ao Vivo)', None, 0.99),\n", " (729, 'Juventude Transviada (Ao Vivo)', None, 0.99),\n", " (730, 'Malandragem', None, 0.99),\n", " (731, 'O Segundo Sol', None, 0.99),\n", " (732, 'Smells Like Teen Spirit (Ao Vivo)', None, 0.99),\n", " (733, 'E.C.T.', None, 0.99),\n", " (734, 'Todo Amor Que Houver Nesta Vida', None, 0.99),\n", " (735, 'Metrô. Linha 743', None, 0.99),\n", " (736, 'Nós (Ao Vivo)', None, 0.99),\n", " (737, 'Na Cadência Do Samba', None, 0.99),\n", " (738, 'Admirável Gado Novo', None, 0.99),\n", " (739, 'Eleanor Rigby', None, 0.99),\n", " (740, 'Socorro', None, 0.99),\n", " (741, 'Blues Da Piedade', None, 0.99),\n", " (742, 'Rubens', None, 0.99),\n", " (743, 'Não Deixe O Samba Morrer - Cassia Eller e Alcione', None, 0.99),\n", " (744, 'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)', None, 0.99),\n", " (745, \"Comin' Home\", 'Bolin/Coverdale/Paice', 0.99),\n", " (746, 'Lady Luck', 'Cook/Coverdale', 0.99),\n", " (747, \"Gettin' Tighter\", 'Bolin/Hughes', 0.99),\n", " (748, 'Dealer', 'Bolin/Coverdale', 0.99),\n", " (749, 'I Need Love', 'Bolin/Coverdale', 0.99),\n", " (750, 'Drifter', 'Bolin/Coverdale', 0.99),\n", " (751, 'Love Child', 'Bolin/Coverdale', 0.99),\n", " (752,\n", " \"This Time Around / Owed to 'G' [Instrumental]\",\n", " 'Bolin/Hughes/Lord',\n", " 0.99),\n", " (753, 'You Keep On Moving', 'Coverdale/Hughes', 0.99),\n", " (754, 'Speed King', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (755, 'Bloodsucker', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (756, 'Child In Time', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (757, 'Flight Of The Rat', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (758, 'Into The Fire', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (759, 'Living Wreck', 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (760, \"Hard Lovin' Man\", 'Blackmore, Gillan, Glover, Lord, Paice', 0.99),\n", " (761,\n", " 'Fireball',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (762,\n", " 'No No No',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (763,\n", " 'Strange Kind Of Woman',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (764,\n", " \"Anyone's Daughter\",\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (765,\n", " 'The Mule',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (766,\n", " 'Fools',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (767,\n", " 'No One Came',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (768,\n", " 'Knocking At Your Back Door',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " 0.99),\n", " (769,\n", " 'Bad Attitude',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " 0.99),\n", " (770,\n", " 'Child In Time (Son Of Aleric - Instrumental)',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (771,\n", " \"Nobody's Home\",\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (772,\n", " 'Black Night',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (773,\n", " 'Perfect Strangers',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " 0.99),\n", " (774,\n", " 'The Unwritten Law',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice',\n", " 0.99),\n", " (775,\n", " 'Call Of The Wild',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " 0.99),\n", " (776, 'Hush', 'South', 0.99),\n", " (777,\n", " 'Smoke On The Water',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (778,\n", " 'Space Trucking',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " 0.99),\n", " (779,\n", " 'Highway Star',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (780,\n", " \"Maybe I'm A Leo\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (781,\n", " 'Pictures Of Home',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (782,\n", " 'Never Before',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (783,\n", " 'Smoke On The Water',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (784,\n", " 'Lazy',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (785,\n", " \"Space Truckin'\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 0.99),\n", " (786,\n", " 'Vavoom : Ted The Mechanic',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (787,\n", " 'Loosen My Strings',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (788,\n", " 'Soon Forgotten',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (789,\n", " 'Sometimes I Feel Like Screaming',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (790,\n", " \"Cascades : I'm Not Your Lover\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (791,\n", " 'The Aviator',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (792,\n", " \"Rosa's Cantina\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (793,\n", " 'A Castle Full Of Rascals',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (794,\n", " 'A Touch Away',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (795,\n", " 'Hey Cisco',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (796,\n", " 'Somebody Stole My Guitar',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (797,\n", " 'The Purpendicular Waltz',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 0.99),\n", " (798, 'King Of Dreams', 'Blackmore, Glover, Turner', 0.99),\n", " (799, 'The Cut Runs Deep', 'Blackmore, Glover, Turner, Lord, Paice', 0.99),\n", " (800, 'Fire In The Basement', 'Blackmore, Glover, Turner, Lord, Paice', 0.99),\n", " (801, 'Truth Hurts', 'Blackmore, Glover, Turner', 0.99),\n", " (802, 'Breakfast In Bed', 'Blackmore, Glover, Turner', 0.99),\n", " (803, 'Love Conquers All', 'Blackmore, Glover, Turner', 0.99),\n", " (804, 'Fortuneteller', 'Blackmore, Glover, Turner, Lord, Paice', 0.99),\n", " (805, 'Too Much Is Not Enough', 'Turner, Held, Greenwood', 0.99),\n", " (806, 'Wicked Ways', 'Blackmore, Glover, Turner, Lord, Paice', 0.99),\n", " (807, 'Stormbringer', 'D.Coverdale/R.Blackmore/Ritchie Blackmore', 0.99),\n", " (808,\n", " \"Love Don't Mean a Thing\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (809, 'Holy Man', 'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord', 0.99),\n", " (810,\n", " 'Hold On',\n", " 'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord',\n", " 0.99),\n", " (811,\n", " 'Lady Double Dealer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (812,\n", " \"You Can't Do it Right (With the One You Love)\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (813,\n", " 'High Ball Shooter',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (814,\n", " 'The Gypsy',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (815,\n", " 'Soldier Of Fortune',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 0.99),\n", " (816, 'The Battle Rages On', 'ian paice/jon lord', 0.99),\n", " (817, 'Lick It Up', 'roger glover', 0.99),\n", " (818, 'Anya', 'jon lord/roger glover', 0.99),\n", " (819, 'Talk About Love', 'roger glover', 0.99),\n", " (820, 'Time To Kill', 'roger glover', 0.99),\n", " (821, 'Ramshackle Man', 'roger glover', 0.99),\n", " (822, 'A Twist In The Tail', 'roger glover', 0.99),\n", " (823, 'Nasty Piece Of Work', 'jon lord/roger glover', 0.99),\n", " (824, 'Solitaire', 'roger glover', 0.99),\n", " (825, \"One Man's Meat\", 'roger glover', 0.99),\n", " (826, 'Pour Some Sugar On Me', None, 0.99),\n", " (827, 'Photograph', None, 0.99),\n", " (828, 'Love Bites', None, 0.99),\n", " (829, \"Let's Get Rocked\", None, 0.99),\n", " (830, 'Two Steps Behind [Acoustic Version]', None, 0.99),\n", " (831, 'Animal', None, 0.99),\n", " (832, 'Heaven Is', None, 0.99),\n", " (833, 'Rocket', None, 0.99),\n", " (834, 'When Love & Hate Collide', None, 0.99),\n", " (835, 'Action', None, 0.99),\n", " (836, 'Make Love Like A Man', None, 0.99),\n", " (837, 'Armageddon It', None, 0.99),\n", " (838, 'Have You Ever Needed Someone So Bad', None, 0.99),\n", " (839, 'Rock Of Ages', None, 0.99),\n", " (840, 'Hysteria', None, 0.99),\n", " (841, \"Bringin' On The Heartbreak\", None, 0.99),\n", " (842, 'Roll Call', 'Jim Beard', 0.99),\n", " (843,\n", " 'Otay',\n", " 'John Scofield, Robert Aries, Milton Chambers and Gary Grainger',\n", " 0.99),\n", " (844, 'Groovus Interruptus', 'Jim Beard', 0.99),\n", " (845, 'Paris On Mine', 'Jon Herington', 0.99),\n", " (846, 'In Time', 'Sylvester Stewart', 0.99),\n", " (847, 'Plan B', 'Dean Brown, Dennis Chambers & Jim Beard', 0.99),\n", " (848, 'Outbreak', 'Jim Beard & Jon Herington', 0.99),\n", " (849, 'Baltimore, DC', 'John Scofield', 0.99),\n", " (850, 'Talkin Loud and Saying Nothin', 'James Brown & Bobby Byrd', 0.99),\n", " (851, 'Pétala', None, 0.99),\n", " (852, 'Meu Bem-Querer', None, 0.99),\n", " (853, 'Cigano', None, 0.99),\n", " (854, 'Boa Noite', None, 0.99),\n", " (855, 'Fato Consumado', None, 0.99),\n", " (856, 'Faltando Um Pedaço', None, 0.99),\n", " (857, 'Álibi', None, 0.99),\n", " (858, 'Esquinas', None, 0.99),\n", " (859, 'Se...', None, 0.99),\n", " (860, 'Eu Te Devoro', None, 0.99),\n", " (861, 'Lilás', None, 0.99),\n", " (862, 'Acelerou', None, 0.99),\n", " (863, 'Um Amor Puro', None, 0.99),\n", " (864, 'Samurai', 'Djavan', 0.99),\n", " (865, 'Nem Um Dia', 'Djavan', 0.99),\n", " (866, 'Oceano', 'Djavan', 0.99),\n", " (867, 'Açai', 'Djavan', 0.99),\n", " (868, 'Serrado', 'Djavan', 0.99),\n", " (869, 'Flor De Lis', 'Djavan', 0.99),\n", " (870, 'Amar É Tudo', 'Djavan', 0.99),\n", " (871, 'Azul', 'Djavan', 0.99),\n", " (872, 'Seduzir', 'Djavan', 0.99),\n", " (873, 'A Carta', 'Djavan - Gabriel, O Pensador', 0.99),\n", " (874, 'Sina', 'Djavan', 0.99),\n", " (875, 'Acelerou', 'Djavan', 0.99),\n", " (876, 'Um Amor Puro', 'Djavan', 0.99),\n", " (877, 'O Bêbado e a Equilibrista', None, 0.99),\n", " (878, 'O Mestre-Sala dos Mares', None, 0.99),\n", " (879, 'Atrás da Porta', None, 0.99),\n", " (880, 'Dois Pra Lá, Dois Pra Cá', None, 0.99),\n", " (881, 'Casa no Campo', None, 0.99),\n", " (882, 'Romaria', None, 0.99),\n", " (883, 'Alô, Alô, Marciano', None, 0.99),\n", " (884, 'Me Deixas Louca', None, 0.99),\n", " (885, 'Fascinação', None, 0.99),\n", " (886, 'Saudosa Maloca', None, 0.99),\n", " (887, 'As Aparências Enganam', None, 0.99),\n", " (888, 'Madalena', None, 0.99),\n", " (889, 'Maria Rosa', None, 0.99),\n", " (890, 'Aprendendo A Jogar', None, 0.99),\n", " (891, 'Layla', 'Clapton/Gordon', 0.99),\n", " (892, 'Badge', 'Clapton/Harrison', 0.99),\n", " (893, 'I Feel Free', 'Bruce/Clapton', 0.99),\n", " (894, 'Sunshine Of Your Love', 'Bruce/Clapton', 0.99),\n", " (895, 'Crossroads', 'Clapton/Robert Johnson Arr: Eric Clapton', 0.99),\n", " (896, 'Strange Brew', 'Clapton/Collins/Pappalardi', 0.99),\n", " (897, 'White Room', 'Bruce/Clapton', 0.99),\n", " (898, 'Bell Bottom Blues', 'Clapton', 0.99),\n", " (899, 'Cocaine', 'Cale/Clapton', 0.99),\n", " (900, 'I Shot The Sheriff', 'Marley', 0.99),\n", " (901, 'After Midnight', 'Clapton/J. J. Cale', 0.99),\n", " (902, 'Swing Low Sweet Chariot', 'Clapton/Trad. Arr. Clapton', 0.99),\n", " (903, 'Lay Down Sally', 'Clapton/Levy', 0.99),\n", " (904, 'Knockin On Heavens Door', 'Clapton/Dylan', 0.99),\n", " (905, 'Wonderful Tonight', 'Clapton', 0.99),\n", " (906, 'Let It Grow', 'Clapton', 0.99),\n", " (907, 'Promises', 'Clapton/F.eldman/Linn', 0.99),\n", " (908, \"I Can't Stand It\", 'Clapton', 0.99),\n", " (909, 'Signe', 'Eric Clapton', 0.99),\n", " (910, 'Before You Accuse Me', 'Eugene McDaniel', 0.99),\n", " (911, 'Hey Hey', 'Big Bill Broonzy', 0.99),\n", " (912, 'Tears In Heaven', 'Eric Clapton, Will Jennings', 0.99),\n", " (913, 'Lonely Stranger', 'Eric Clapton', 0.99),\n", " (914, \"Nobody Knows You When You're Down & Out\", 'Jimmy Cox', 0.99),\n", " (915, 'Layla', 'Eric Clapton, Jim Gordon', 0.99),\n", " (916, 'Running On Faith', 'Jerry Lynn Williams', 0.99),\n", " (917, \"Walkin' Blues\", 'Robert Johnson', 0.99),\n", " (918, 'Alberta', 'Traditional', 0.99),\n", " (919, 'San Francisco Bay Blues', 'Jesse Fuller', 0.99),\n", " (920, 'Malted Milk', 'Robert Johnson', 0.99),\n", " (921, 'Old Love', 'Eric Clapton, Robert Cray', 0.99),\n", " (922, \"Rollin' And Tumblin'\", 'McKinley Morgenfield (Muddy Waters)', 0.99),\n", " (923, 'Collision', 'Jon Hudson/Mike Patton', 0.99),\n", " (924, 'Stripsearch', 'Jon Hudson/Mike Bordin/Mike Patton', 0.99),\n", " (925, 'Last Cup Of Sorrow', 'Bill Gould/Mike Patton', 0.99),\n", " (926, 'Naked In Front Of The Computer', 'Mike Patton', 0.99),\n", " (927, 'Helpless', 'Bill Gould/Mike Bordin/Mike Patton', 0.99),\n", " (928,\n", " 'Mouth To Mouth',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton',\n", " 0.99),\n", " (929,\n", " 'Ashes To Ashes',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 0.99),\n", " (930, 'She Loves Me Not', 'Bill Gould/Mike Bordin/Mike Patton', 0.99),\n", " (931, 'Got That Feeling', 'Mike Patton', 0.99),\n", " (932,\n", " 'Paths Of Glory',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 0.99),\n", " (933, 'Home Sick Home', 'Mike Patton', 0.99),\n", " (934, 'Pristina', 'Bill Gould/Mike Patton', 0.99),\n", " (935, 'Land Of Sunshine', None, 0.99),\n", " (936, 'Caffeine', None, 0.99),\n", " (937, 'Midlife Crisis', None, 0.99),\n", " (938, 'RV', None, 0.99),\n", " (939, 'Smaller And Smaller', None, 0.99),\n", " (940, \"Everything's Ruined\", None, 0.99),\n", " (941, 'Malpractice', None, 0.99),\n", " (942, 'Kindergarten', None, 0.99),\n", " (943, 'Be Aggressive', None, 0.99),\n", " (944, 'A Small Victory', None, 0.99),\n", " (945, 'Crack Hitler', None, 0.99),\n", " (946, 'Jizzlobber', None, 0.99),\n", " (947, 'Midnight Cowboy', None, 0.99),\n", " (948, 'Easy', None, 0.99),\n", " (949, 'Get Out', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (950, 'Ricochet', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (951,\n", " 'Evidence',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 0.99),\n", " (952,\n", " 'The Gentle Art Of Making Enemies',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 0.99),\n", " (953, 'Star A.D.', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (954,\n", " 'Cuckoo For Caca',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 0.99),\n", " (955,\n", " 'Caralho Voador',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 0.99),\n", " (956, 'Ugly In The Morning', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (957, 'Digging The Grave', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (958,\n", " 'Take This Bottle',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 0.99),\n", " (959,\n", " 'King For A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 0.99),\n", " (960, 'What A Day', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (961, 'The Last To Know', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (962, 'Just A Man', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (963, 'Absolute Zero', 'Mike Bordin, Billy Gould, Mike Patton', 0.99),\n", " (964, 'From Out Of Nowhere', 'Faith No More', 0.99),\n", " (965, 'Epic', 'Faith No More', 0.99),\n", " (966, 'Falling To Pieces', 'Faith No More', 0.99),\n", " (967, \"Surprise! You're Dead!\", 'Faith No More', 0.99),\n", " (968, 'Zombie Eaters', 'Faith No More', 0.99),\n", " (969, 'The Real Thing', 'Faith No More', 0.99),\n", " (970, 'Underwater Love', 'Faith No More', 0.99),\n", " (971, 'The Morning After', 'Faith No More', 0.99),\n", " (972, 'Woodpecker From Mars', 'Faith No More', 0.99),\n", " (973,\n", " 'War Pigs',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 0.99),\n", " (974, 'Edge Of The World', 'Faith No More', 0.99),\n", " (975, 'Deixa Entrar', None, 0.99),\n", " (976, 'Falamansa Song', None, 0.99),\n", " (977, 'Xote Dos Milagres', None, 0.99),\n", " (978, 'Rindo À Toa', None, 0.99),\n", " (979, 'Confidência', None, 0.99),\n", " (980, 'Forró De Tóquio', None, 0.99),\n", " (981, 'Zeca Violeiro', None, 0.99),\n", " (982, 'Avisa', None, 0.99),\n", " (983, 'Principiando/Decolagem', None, 0.99),\n", " (984, 'Asas', None, 0.99),\n", " (985, 'Medo De Escuro', None, 0.99),\n", " (986, 'Oração', None, 0.99),\n", " (987, 'Minha Gata', None, 0.99),\n", " (988, 'Desaforo', None, 0.99),\n", " (989,\n", " 'In Your Honor',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (990,\n", " 'No Way Back',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (991,\n", " 'Best Of You',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (992, 'DOA', 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 0.99),\n", " (993,\n", " 'Hell',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (994,\n", " 'The Last Song',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (995,\n", " 'Free Me',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (996,\n", " 'Resolve',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (997,\n", " 'The Deepest Blues Are Black',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (998,\n", " 'End Over End',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 0.99),\n", " (999,\n", " 'Still',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 0.99),\n", " (1000,\n", " 'What If I Do?',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 0.99),\n", " ...]" ] }, "metadata": { "tags": [] }, "execution_count": 5 } ] }, { "cell_type": "code", "metadata": { "id": "iDZiGJ_xtaTh", "colab_type": "code", "colab": {} }, "source": [ "# We reached EOF, so this is empty.\n", "out.fetchone()" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "0qjZ6Ju8taTj", "colab_type": "text" }, "source": [ "Let's create a slightly more complex query. For example, let's create a query that returns all the songs written by AC/DC. We will at this point use a more secure way to write a query, by passing the artist name as a wildcard character." ] }, { "cell_type": "code", "metadata": { "id": "1v40PlittaTj", "colab_type": "code", "colab": {} }, "source": [ "artist = ('AC/DC',)\n", "query = \"SELECT trackid, name, composer, unitprice FROM tracks WHERE composer=?;\"\n", "out = conn.execute(query, artist)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "scrolled": false, "id": "8E57LXb3taTl", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 151 }, "outputId": "daec606a-7e73-44eb-cc6a-65246f678de0" }, "source": [ "out.fetchall()" ], "execution_count": 8, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[(15, 'Go Down', 'AC/DC', 0.99),\n", " (16, 'Dog Eat Dog', 'AC/DC', 0.99),\n", " (17, 'Let There Be Rock', 'AC/DC', 0.99),\n", " (18, 'Bad Boy Boogie', 'AC/DC', 0.99),\n", " (19, 'Problem Child', 'AC/DC', 0.99),\n", " (20, 'Overdose', 'AC/DC', 0.99),\n", " (21, \"Hell Ain't A Bad Place To Be\", 'AC/DC', 0.99),\n", " (22, 'Whole Lotta Rosie', 'AC/DC', 0.99)]" ] }, "metadata": { "tags": [] }, "execution_count": 8 } ] }, { "cell_type": "markdown", "metadata": { "id": "45ThBvRMtaTn", "colab_type": "text" }, "source": [ "With this notation, we are reducing the risk of [SQL Injection attacks](https://en.wikipedia.org/wiki/SQL_injection), which is by far the most common hack out there. We reduce the risk because we can run checks on the variable in order to clean it from potential attacks. This is called [input sanitization](https://download.oracle.com/oll/tutorials/SQLInjection/html/lesson1/les01_tm_ovw3.htm)." ] }, { "cell_type": "markdown", "metadata": { "id": "MWCKuayZtaTo", "colab_type": "text" }, "source": [ "## Joining tables" ] }, { "cell_type": "markdown", "metadata": { "id": "_kFNQOKMtaTo", "colab_type": "text" }, "source": [ "The most common operation in database querying is to join tables. This way, we can create views (queries) that put together the information that we need efficiently. Most join operations that we will use are called \"inner joins\", that is, they take the information from the tables and return the ones that match in either both or just one of the tables. There are also \"outer joins\" that returns all information in two tables, and using negations we can get the ones that do not match.\n", "\n", "![Join types](http://1.bp.blogspot.com/-_PHkf1f9Vpk/UHGgfNrLxEI/AAAAAAAAAUk/NTTqGCCefjw/s1600/sqljoins2.png)" ] }, { "cell_type": "markdown", "metadata": { "id": "fZ7ocdtJtaTp", "colab_type": "text" }, "source": [ "Let's create a query that gives us the album title as well as the track title and composer for all authors." ] }, { "cell_type": "code", "metadata": { "id": "ngvoVxgXtaTp", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 42638 }, "outputId": "0adc1ca7-27fa-48e1-a781-dee2f1879f41" }, "source": [ "query = \"SELECT T.trackid, T.name, T.composer, A.title, T.unitprice FROM tracks AS T INNER JOIN Albums as A \"\n", "query += \"ON T.AlbumID = A.AlbumID\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 9, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[(1,\n", " 'For Those About To Rock (We Salute You)',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (6,\n", " 'Put The Finger On You',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (7,\n", " \"Let's Get It Up\",\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (8,\n", " 'Inject The Venom',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (9,\n", " 'Snowballed',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (10,\n", " 'Evil Walks',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (11,\n", " 'C.O.D.',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (12,\n", " 'Breaking The Rules',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (13,\n", " 'Night Of The Long Knives',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (14,\n", " 'Spellbound',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (2, 'Balls to the Wall', None, 'Balls to the Wall', 0.99),\n", " (3,\n", " 'Fast As a Shark',\n", " 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (4,\n", " 'Restless and Wild',\n", " 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (5,\n", " 'Princess of the Dawn',\n", " 'Deaffy & R.A. Smith-Diesel',\n", " 'Restless and Wild',\n", " 0.99),\n", " (15, 'Go Down', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (16, 'Dog Eat Dog', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (17, 'Let There Be Rock', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (18, 'Bad Boy Boogie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (19, 'Problem Child', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (20, 'Overdose', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (21, \"Hell Ain't A Bad Place To Be\", 'AC/DC', 'Let There Be Rock', 0.99),\n", " (22, 'Whole Lotta Rosie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (23,\n", " 'Walk On Water',\n", " 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw',\n", " 'Big Ones',\n", " 0.99),\n", " (24, 'Love In An Elevator', 'Steven Tyler, Joe Perry', 'Big Ones', 0.99),\n", " (25,\n", " 'Rag Doll',\n", " 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight',\n", " 'Big Ones',\n", " 0.99),\n", " (26,\n", " 'What It Takes',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (27,\n", " 'Dude (Looks Like A Lady)',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (28, \"Janie's Got A Gun\", 'Steven Tyler, Tom Hamilton', 'Big Ones', 0.99),\n", " (29, \"Cryin'\", 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (30, 'Amazing', 'Steven Tyler, Richie Supa', 'Big Ones', 0.99),\n", " (31, 'Blind Man', 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (32, 'Deuces Are Wild', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (33, 'The Other Side', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (34, 'Crazy', 'Steven Tyler, Joe Perry, Desmond Child', 'Big Ones', 0.99),\n", " (35,\n", " 'Eat The Rich',\n", " 'Steven Tyler, Joe Perry, Jim Vallance',\n", " 'Big Ones',\n", " 0.99),\n", " (36, 'Angel', 'Steven Tyler, Desmond Child', 'Big Ones', 0.99),\n", " (37,\n", " \"Livin' On The Edge\",\n", " 'Steven Tyler, Joe Perry, Mark Hudson',\n", " 'Big Ones',\n", " 0.99),\n", " (38,\n", " 'All I Really Want',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (39,\n", " 'You Oughta Know',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (40,\n", " 'Perfect',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (41,\n", " 'Hand In My Pocket',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (42,\n", " 'Right Through You',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (43,\n", " 'Forgiven',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (44,\n", " 'You Learn',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (45,\n", " 'Head Over Feet',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (46,\n", " 'Mary Jane',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (47,\n", " 'Ironic',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (48,\n", " 'Not The Doctor',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (49,\n", " 'Wake Up',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (50,\n", " 'You Oughta Know (Alternate)',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (51, 'We Die Young', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (52, 'Man In The Box', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (53, 'Sea Of Sorrow', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (54, 'Bleed The Freak', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (55, \"I Can't Remember\", 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (56, 'Love, Hate, Love', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (57,\n", " \"It Ain't Like That\",\n", " 'Jerry Cantrell, Michael Starr, Sean Kinney',\n", " 'Facelift',\n", " 0.99),\n", " (58, 'Sunshine', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (59, 'Put You Down', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (60,\n", " 'Confusion',\n", " 'Jerry Cantrell, Michael Starr, Layne Staley',\n", " 'Facelift',\n", " 0.99),\n", " (61, 'I Know Somethin (Bout You)', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (62, 'Real Thing', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (63, 'Desafinado', None, 'Warner 25 Anos', 0.99),\n", " (64, 'Garota De Ipanema', None, 'Warner 25 Anos', 0.99),\n", " (65, 'Samba De Uma Nota Só (One Note Samba)', None, 'Warner 25 Anos', 0.99),\n", " (66, 'Por Causa De Você', None, 'Warner 25 Anos', 0.99),\n", " (67, 'Ligia', None, 'Warner 25 Anos', 0.99),\n", " (68, 'Fotografia', None, 'Warner 25 Anos', 0.99),\n", " (69, 'Dindi (Dindi)', None, 'Warner 25 Anos', 0.99),\n", " (70,\n", " 'Se Todos Fossem Iguais A Você (Instrumental)',\n", " None,\n", " 'Warner 25 Anos',\n", " 0.99),\n", " (71, 'Falando De Amor', None, 'Warner 25 Anos', 0.99),\n", " (72, 'Angela', None, 'Warner 25 Anos', 0.99),\n", " (73, 'Corcovado (Quiet Nights Of Quiet Stars)', None, 'Warner 25 Anos', 0.99),\n", " (74, 'Outra Vez', None, 'Warner 25 Anos', 0.99),\n", " (75, 'O Boto (Bôto)', None, 'Warner 25 Anos', 0.99),\n", " (76, 'Canta, Canta Mais', None, 'Warner 25 Anos', 0.99),\n", " (77, 'Enter Sandman', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (78,\n", " 'Master Of Puppets',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (79,\n", " 'Harvester Of Sorrow',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (80,\n", " 'The Unforgiven',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (81, 'Sad But True', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (82,\n", " 'Creeping Death',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (83,\n", " 'Wherever I May Roam',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (84,\n", " 'Welcome Home (Sanitarium)',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (85, 'Cochise', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (86, 'Show Me How to Live', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (87, 'Gasoline', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (88, 'What You Are', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (89, 'Like a Stone', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (90, 'Set It Off', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (91, 'Shadow on the Sun', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (92, 'I am the Highway', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (93, 'Exploder', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (94, 'Hypnotize', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (95, \"Bring'em Back Alive\", 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (96, 'Light My Way', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (97, 'Getaway Car', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (98,\n", " 'The Last Remaining Light',\n", " 'Audioslave/Chris Cornell',\n", " 'Audioslave',\n", " 0.99),\n", " (99,\n", " 'Your Time Has Come',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (100,\n", " 'Out Of Exile',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (101,\n", " 'Be Yourself',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (102,\n", " \"Doesn't Remind Me\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (103,\n", " 'Drown Me Slowly',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (104,\n", " \"Heaven's Dead\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (105, 'The Worm', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (106,\n", " 'Man Or Animal',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (107,\n", " 'Yesterday To Tomorrow',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (108,\n", " 'Dandelion',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (109, '#1 Zero', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (110,\n", " 'The Curse',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (111,\n", " 'Money',\n", " 'Berry Gordy, Jr./Janie Bradford',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (112,\n", " 'Long Tall Sally',\n", " 'Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (113, 'Bad Boy', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (114,\n", " 'Twist And Shout',\n", " 'Bert Russell/Phil Medley',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (115,\n", " 'Please Mr. Postman',\n", " 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (116,\n", " \"C'Mon Everybody\",\n", " 'Eddie Cochran/Jerry Capehart',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (117, \"Rock 'N' Roll Music\", 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (118, 'Slow Down', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (119, 'Roadrunner', 'Bo Diddley', 'BackBeat Soundtrack', 0.99),\n", " (120, 'Carol', 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (121, 'Good Golly Miss Molly', 'Little Richard', 'BackBeat Soundtrack', 0.99),\n", " (122, '20 Flight Rock', 'Ned Fairchild', 'BackBeat Soundtrack', 0.99),\n", " (123, 'Quadrant', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (124,\n", " \"Snoopy's search-Red baron\",\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (125,\n", " 'Spanish moss-\"A sound portrait\"-Spanish moss',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (126, 'Moon germs', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (127, 'Stratus', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (128,\n", " 'The pleasant pheasant',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (129, 'Solo-Panhandler', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (130, 'Do what cha wanna', 'George Duke', 'The Best Of Billy Cobham', 0.99),\n", " (131,\n", " 'Intro/ Low Down',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (132,\n", " '13 Years Of Grief',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (133,\n", " 'Stronger Than Death',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (134, 'All For You', None, 'Alcohol Fueled Brewtality Live! [Disc 1]', 0.99),\n", " (135,\n", " 'Super Terrorizer',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (136,\n", " 'Phoney Smile Fake Hellos',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (137,\n", " 'Lost My Better Half',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (138,\n", " 'Bored To Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (139,\n", " 'A.N.D.R.O.T.A.Z.',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (140,\n", " 'Born To Booze',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (141,\n", " 'World Of Trouble',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (142,\n", " 'No More Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (143,\n", " 'The Begining... At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (144,\n", " 'Heart Of Gold',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (145, 'Snowblind', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (146, 'Like A Bird', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (147,\n", " 'Blood In The Wall',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (148,\n", " 'The Beginning...At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (149, 'Black Sabbath', None, 'Black Sabbath', 0.99),\n", " (150, 'The Wizard', None, 'Black Sabbath', 0.99),\n", " (151, 'Behind The Wall Of Sleep', None, 'Black Sabbath', 0.99),\n", " (152, 'N.I.B.', None, 'Black Sabbath', 0.99),\n", " (153, 'Evil Woman', None, 'Black Sabbath', 0.99),\n", " (154, 'Sleeping Village', None, 'Black Sabbath', 0.99),\n", " (155, 'Warning', None, 'Black Sabbath', 0.99),\n", " (156,\n", " 'Wheels Of Confusion / The Straightener',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (157,\n", " \"Tomorrow's Dream\",\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (158,\n", " 'Changes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (159,\n", " 'FX',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (160,\n", " 'Supernaut',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (161,\n", " 'Snowblind',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (162,\n", " 'Cornucopia',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (163,\n", " 'Laguna Sunrise',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (164,\n", " 'St. Vitus Dance',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (165,\n", " 'Under The Sun/Every Day Comes and Goes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (166, 'Smoked Pork', None, 'Body Count', 0.99),\n", " (167, \"Body Count's In The House\", None, 'Body Count', 0.99),\n", " (168, 'Now Sports', None, 'Body Count', 0.99),\n", " (169, 'Body Count', None, 'Body Count', 0.99),\n", " (170, 'A Statistic', None, 'Body Count', 0.99),\n", " (171, 'Bowels Of The Devil', None, 'Body Count', 0.99),\n", " (172, 'The Real Problem', None, 'Body Count', 0.99),\n", " (173, 'KKK Bitch', None, 'Body Count', 0.99),\n", " (174, 'D Note', None, 'Body Count', 0.99),\n", " (175, 'Voodoo', None, 'Body Count', 0.99),\n", " (176, 'The Winner Loses', None, 'Body Count', 0.99),\n", " (177, 'There Goes The Neighborhood', None, 'Body Count', 0.99),\n", " (178, 'Oprah', None, 'Body Count', 0.99),\n", " (179, 'Evil Dick', None, 'Body Count', 0.99),\n", " (180, 'Body Count Anthem', None, 'Body Count', 0.99),\n", " (181, \"Momma's Gotta Die Tonight\", None, 'Body Count', 0.99),\n", " (182, 'Freedom Of Speech', None, 'Body Count', 0.99),\n", " (183, 'King In Crimson', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (184, 'Chemical Wedding', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (185, 'The Tower', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (186, 'Killing Floor', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (187, 'Book Of Thel', 'Eddie Casillas/Roy Z', 'Chemical Wedding', 0.99),\n", " (188, 'Gates Of Urizen', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (189, 'Jerusalem', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (190, 'Trupets Of Jericho', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (191, 'Machine Men', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (192, 'The Alchemist', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (193, 'Realword', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (194,\n", " 'First Time I Met The Blues',\n", " 'Eurreal Montgomery',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (195,\n", " 'Let Me Love You Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (196,\n", " 'Stone Crazy',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (197,\n", " 'Pretty Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (198,\n", " 'When My Left Eye Jumps',\n", " 'Al Perkins/Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (199,\n", " 'Leave My Girl Alone',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (200,\n", " 'She Suits Me To A Tee',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (201,\n", " 'Keep It To Myself (Aka Keep It To Yourself)',\n", " 'Sonny Boy Williamson [I]',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (202,\n", " 'My Time After Awhile',\n", " 'Robert Geddins/Ron Badger/Sheldon Feinberg',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (203,\n", " 'Too Many Ways (Alternate)',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (204,\n", " \"Talkin' 'Bout Women Obviously\",\n", " 'Amos Blakemore/Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (205, 'Jorge Da Capadócia', 'Jorge Ben', 'Prenda Minha', 0.99),\n", " (206, 'Prenda Minha', 'Tradicional', 'Prenda Minha', 0.99),\n", " (207, 'Meditação', 'Tom Jobim - Newton Mendoça', 'Prenda Minha', 0.99),\n", " (208, 'Terra', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (209, 'Eclipse Oculto', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (210, 'Texto \"Verdade Tropical\"', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (211, 'Bem Devagar', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (212, 'Drão', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (213, 'Saudosismo', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (214, 'Carolina', 'Chico Buarque', 'Prenda Minha', 0.99),\n", " (215, 'Sozinho', 'Peninha', 'Prenda Minha', 0.99),\n", " (216, 'Esse Cara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (217, 'Mel', 'Caetano Veloso - Waly Salomão', 'Prenda Minha', 0.99),\n", " (218, 'Linha Do Equador', 'Caetano Veloso - Djavan', 'Prenda Minha', 0.99),\n", " (219, 'Odara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (220, 'A Luz De Tieta', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (221,\n", " 'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu',\n", " 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto',\n", " 'Prenda Minha',\n", " 0.99),\n", " (222, 'Vida Boa', 'Fausto Nilo - Armandinho', 'Prenda Minha', 0.99),\n", " (223, 'Sozinho (Hitmakers Classic Mix)', None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (224,\n", " 'Sozinho (Hitmakers Classic Radio Edit)',\n", " None,\n", " 'Sozinho Remix Ao Vivo',\n", " 0.99),\n", " (225, \"Sozinho (Caêdrum 'n' Bass)\", None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (226, 'Carolina', None, 'Minha Historia', 0.99),\n", " (227, 'Essa Moça Ta Diferente', None, 'Minha Historia', 0.99),\n", " (228, 'Vai Passar', None, 'Minha Historia', 0.99),\n", " (229, 'Samba De Orly', None, 'Minha Historia', 0.99),\n", " (230, 'Bye, Bye Brasil', None, 'Minha Historia', 0.99),\n", " (231, 'Atras Da Porta', None, 'Minha Historia', 0.99),\n", " (232, 'Tatuagem', None, 'Minha Historia', 0.99),\n", " (233, 'O Que Será (À Flor Da Terra)', None, 'Minha Historia', 0.99),\n", " (234, 'Morena De Angola', None, 'Minha Historia', 0.99),\n", " (235, 'Apesar De Você', None, 'Minha Historia', 0.99),\n", " (236, 'A Banda', None, 'Minha Historia', 0.99),\n", " (237, 'Minha Historia', None, 'Minha Historia', 0.99),\n", " (238, 'Com Açúcar E Com Afeto', None, 'Minha Historia', 0.99),\n", " (239, 'Brejo Da Cruz', None, 'Minha Historia', 0.99),\n", " (240, 'Meu Caro Amigo', None, 'Minha Historia', 0.99),\n", " (241, 'Geni E O Zepelim', None, 'Minha Historia', 0.99),\n", " (242, 'Trocando Em Miúdos', None, 'Minha Historia', 0.99),\n", " (243, 'Vai Trabalhar Vagabundo', None, 'Minha Historia', 0.99),\n", " (244, \"Gota D'água\", None, 'Minha Historia', 0.99),\n", " (245, 'Construção / Deus Lhe Pague', None, 'Minha Historia', 0.99),\n", " (515, 'Meia-Lua Inteira', None, 'Minha Historia', 0.99),\n", " (516, 'Voce e Linda', None, 'Minha Historia', 0.99),\n", " (517, 'Um Indio', None, 'Minha Historia', 0.99),\n", " (518, 'Podres Poderes', None, 'Minha Historia', 0.99),\n", " (519, 'Voce Nao Entende Nada - Cotidiano', None, 'Minha Historia', 0.99),\n", " (520, 'O Estrangeiro', None, 'Minha Historia', 0.99),\n", " (521, 'Menino Do Rio', None, 'Minha Historia', 0.99),\n", " (522, 'Qualquer Coisa', None, 'Minha Historia', 0.99),\n", " (523, 'Sampa', None, 'Minha Historia', 0.99),\n", " (524, 'Queixa', None, 'Minha Historia', 0.99),\n", " (525, 'O Leaozinho', None, 'Minha Historia', 0.99),\n", " (526, 'Fora Da Ordem', None, 'Minha Historia', 0.99),\n", " (527, 'Terra', None, 'Minha Historia', 0.99),\n", " (528, 'Alegria, Alegria', None, 'Minha Historia', 0.99),\n", " (246, 'Mateus Enter', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (247, 'O Cidadão Do Mundo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (248, 'Etnia', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (249,\n", " 'Quilombo Groove [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (250, 'Macô', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (251, 'Um Passeio No Mundo Livre', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (252, 'Samba Do Lado', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (253, 'Maracatu Atômico', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (254,\n", " 'O Encontro De Isaac Asimov Com Santos Dumont No Céu',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (255, 'Corpo De Lama', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (256, 'Sobremesa', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (257, 'Manguetown', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (258, 'Um Satélite Na Cabeça', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (259,\n", " 'Baião Ambiental [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (260, 'Sangue De Bairro', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (261, 'Enquanto O Mundo Explode', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (262, 'Interlude Zumbi', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (263, 'Criança De Domingo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (264, 'Amor De Muito', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (265, 'Samidarish [Instrumental]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (266,\n", " 'Maracatu Atômico [Atomic Version]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (267,\n", " 'Maracatu Atômico [Ragga Mix]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (268, 'Maracatu Atômico [Trip Hop]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (269, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (270, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (271, 'Rios Pontes & Overdrives', None, 'Da Lama Ao Caos', 0.99),\n", " (272, 'Cidade', None, 'Da Lama Ao Caos', 0.99),\n", " (273, 'Praiera', None, 'Da Lama Ao Caos', 0.99),\n", " (274, 'Samba Makossa', None, 'Da Lama Ao Caos', 0.99),\n", " (275, 'Da Lama Ao Caos', None, 'Da Lama Ao Caos', 0.99),\n", " (276, 'Maracatu De Tiro Certeiro', None, 'Da Lama Ao Caos', 0.99),\n", " (277, 'Salustiano Song', None, 'Da Lama Ao Caos', 0.99),\n", " (278, 'Antene Se', None, 'Da Lama Ao Caos', 0.99),\n", " (279, 'Risoflora', None, 'Da Lama Ao Caos', 0.99),\n", " (280, 'Lixo Do Mangue', None, 'Da Lama Ao Caos', 0.99),\n", " (281, 'Computadores Fazem Arte', None, 'Da Lama Ao Caos', 0.99),\n", " (282,\n", " 'Girassol',\n", " 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (283,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (284, 'Johnny B. Goode', 'Chuck Berry', 'Acústico MTV [Live]', 0.99),\n", " (285, 'Soldado Da Paz', 'Herbert Vianna', 'Acústico MTV [Live]', 0.99),\n", " (286,\n", " 'Firmamento',\n", " 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (287, 'Extra', 'Gilberto Gil', 'Acústico MTV [Live]', 0.99),\n", " (288,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (289,\n", " 'Podes Crer',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (290,\n", " 'A Estrada',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (291, 'Berlim', 'Da Gama/Toni Garrido', 'Acústico MTV [Live]', 0.99),\n", " (292,\n", " 'Já Foi',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (293,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (294,\n", " 'Pensamento',\n", " 'Bino Farias/Da Gamma/Lazão/Rás Bernard',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (295,\n", " 'Conciliação',\n", " 'Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (296,\n", " 'Realidade Virtual',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (297,\n", " 'Mensagem',\n", " 'Bino Farias/Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (298,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazão',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (299,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (300,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (301,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (302, 'A Estrada', 'Da Gama/Lazao/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (303,\n", " 'Falar A Verdade',\n", " 'Bino/Da Gama/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (304,\n", " 'Firmamento',\n", " 'Harry Lawes/Winston Foster-Vers',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (305, 'Pensamento', 'Bino/Da Gama/Ras Bernardo', 'Cidade Negra - Hits', 0.99),\n", " (306,\n", " 'Realidade Virtual',\n", " 'Bino/Da Gamma/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (307, 'Doutor', 'Bino/Da Gama/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (308,\n", " 'Na Frente Da TV',\n", " 'Bino/Da Gama/Lazao/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (309, 'Downtown', 'Cidade Negra', 'Cidade Negra - Hits', 0.99),\n", " (310, 'Sábado A Noite', 'Lulu Santos', 'Cidade Negra - Hits', 0.99),\n", " (311,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazao',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (312,\n", " 'Eu Também Quero Beijar',\n", " 'Fausto Nilo/Moraes Moreira/Pepeu Gomes',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (313, 'Noite Do Prazer', None, 'Na Pista', 0.99),\n", " (314, 'À Francesa', None, 'Na Pista', 0.99),\n", " (315, 'Cada Um Cada Um (A Namoradeira)', None, 'Na Pista', 0.99),\n", " (316, 'Linha Do Equador', None, 'Na Pista', 0.99),\n", " (317, 'Amor Demais', None, 'Na Pista', 0.99),\n", " (318, 'Férias', None, 'Na Pista', 0.99),\n", " (319, 'Gostava Tanto De Você', None, 'Na Pista', 0.99),\n", " (320, 'Flor Do Futuro', None, 'Na Pista', 0.99),\n", " (321, 'Felicidade Urgente', None, 'Na Pista', 0.99),\n", " (322, 'Livre Pra Viver', None, 'Na Pista', 0.99),\n", " (323,\n", " 'Dig-Dig, Lambe-Lambe (Ao Vivo)',\n", " 'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (324,\n", " 'Pererê',\n", " 'Augusto Conceição/Chiclete Com Banana',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (325, 'TriboTchan', 'Cal Adan/Paulo Levi', 'Axé Bahia 2001', 0.99),\n", " (326,\n", " 'Tapa Aqui, Descobre Ali',\n", " 'Paulo Levi/W. Rangel',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (327, 'Daniela', 'Jorge Cardoso/Pierre Onasis', 'Axé Bahia 2001', 0.99),\n", " (328,\n", " 'Bate Lata',\n", " 'Fábio Nolasco/Gal Sales/Ivan Brasil',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (329,\n", " 'Garotas do Brasil',\n", " 'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (330,\n", " 'Levada do Amor (Ailoviu)',\n", " 'Luiz Wanderley/Paulo Levi',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (331,\n", " 'Lavadeira',\n", " 'Do Vale, Valverde/Gal Oliveira/Luciano Pinto',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (332,\n", " 'Reboladeira',\n", " 'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (333,\n", " 'É que Nessa Encarnação Eu Nasci Manga',\n", " 'Lucina/Luli',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (334,\n", " 'Reggae Tchan',\n", " 'Cal Adan/Del Rey, Tension/Edu Casanova',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (335, 'My Love', 'Jauperi/Zeu Góes', 'Axé Bahia 2001', 0.99),\n", " (336,\n", " 'Latinha de Cerveja',\n", " 'Adriano Bernandes/Edmar Neves',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (337,\n", " 'You Shook Me',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (338,\n", " \"I Can't Quit You Baby\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (339,\n", " 'Communication Breakdown',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (340,\n", " 'Dazed and Confused',\n", " 'Jimmy Page',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (341,\n", " 'The Girl I Love She Got Long Black Wavy Hair',\n", " 'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (342,\n", " 'What is and Should Never Be',\n", " 'Jimmy Page/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (343,\n", " 'Communication Breakdown(2)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (344,\n", " 'Travelling Riverside Blues',\n", " 'Jimmy Page/Robert Johnson/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (345,\n", " 'Whole Lotta Love',\n", " 'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (346,\n", " \"Somethin' Else\",\n", " 'Bob Cochran/Sharon Sheeley',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (347,\n", " 'Communication Breakdown(3)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (348,\n", " \"I Can't Quit You Baby(2)\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (349,\n", " 'You Shook Me(2)',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (350,\n", " 'How Many More Times',\n", " 'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (351, 'Debra Kadabra', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (352, 'Carolina Hard-Core Ecstasy', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (353,\n", " 'Sam With The Showing Scalp Flat Top',\n", " 'Don Van Vliet',\n", " 'Bongo Fury',\n", " 0.99),\n", " (354,\n", " \"Poofter's Froth Wyoming Plans Ahead\",\n", " 'Frank Zappa',\n", " 'Bongo Fury',\n", " 0.99),\n", " (355, '200 Years Old', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (356, 'Cucamonga', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (357, 'Advance Romance', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (358, 'Man With The Woman Head', 'Don Van Vliet', 'Bongo Fury', 0.99),\n", " (359, 'Muffin Man', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (360, 'Vai-Vai 2001', None, 'Carnaval 2001', 0.99),\n", " (361, 'X-9 2001', None, 'Carnaval 2001', 0.99),\n", " (362, 'Gavioes 2001', None, 'Carnaval 2001', 0.99),\n", " (363, 'Nene 2001', None, 'Carnaval 2001', 0.99),\n", " (364, 'Rosas De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (365, 'Mocidade Alegre 2001', None, 'Carnaval 2001', 0.99),\n", " (366, 'Camisa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (367, 'Leandro De Itaquera 2001', None, 'Carnaval 2001', 0.99),\n", " (368, 'Tucuruvi 2001', None, 'Carnaval 2001', 0.99),\n", " (369, 'Aguia De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (370, 'Ipiranga 2001', None, 'Carnaval 2001', 0.99),\n", " (371, 'Morro Da Casa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (372, 'Perola Negra 2001', None, 'Carnaval 2001', 0.99),\n", " (373, 'Sao Lucas 2001', None, 'Carnaval 2001', 0.99),\n", " (374, 'Guanabara', 'Marcos Valle', 'Chill: Brazil (Disc 1)', 0.99),\n", " (375, 'Mas Que Nada', 'Jorge Ben', 'Chill: Brazil (Disc 1)', 0.99),\n", " (376,\n", " 'Vôo Sobre o Horizonte',\n", " 'J.r.Bertami/Parana',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (377, 'A Paz', 'Donato/Gilberto Gil', 'Chill: Brazil (Disc 1)', 0.99),\n", " (378,\n", " 'Wave (Vou te Contar)',\n", " 'Antonio Carlos Jobim',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (379,\n", " 'Água de Beber',\n", " 'Antonio Carlos Jobim/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (380,\n", " 'Samba da Bençaco',\n", " 'Baden Powell/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (381,\n", " 'Pode Parar',\n", " 'Jorge Vercilo/Jota Maranhao',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (382, 'Menino do Rio', 'Caetano Veloso', 'Chill: Brazil (Disc 1)', 0.99),\n", " (383,\n", " 'Ando Meio Desligado',\n", " 'Caetano Veloso',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (384,\n", " 'Mistério da Raça',\n", " 'Luiz Melodia/Ricardo Augusto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (385, 'All Star', 'Nando Reis', 'Chill: Brazil (Disc 1)', 0.99),\n", " (386,\n", " 'Menina Bonita',\n", " 'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (387,\n", " 'Pescador de Ilusões',\n", " 'Macelo Yuka/O Rappa',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (388,\n", " 'À Vontade (Live Mix)',\n", " 'Bombom/Ed Motta',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (389, 'Maria Fumaça', 'Luiz Carlos/Oberdan', 'Chill: Brazil (Disc 1)', 0.99),\n", " (390,\n", " 'Sambassim (dj patife remix)',\n", " 'Alba Carvalho/Fernando Porto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (391, 'Garota De Ipanema', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (392, 'Tim Tim Por Tim Tim', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (393, 'Tarde Em Itapoã', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (394, 'Tanto Tempo', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (395, 'Eu Vim Da Bahia - Live', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (396, 'Alô Alô Marciano', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (397, 'Linha Do Horizonte', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (398, 'Only A Dream In Rio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (399, 'Abrir A Porta', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (400, 'Alice', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (401, 'Momentos Que Marcam', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (402, 'Um Jantar Pra Dois', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (403, 'Bumbo Da Mangueira', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (404, 'Mr Funk Samba', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (405, 'Santo Antonio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (406, 'Por Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (407, 'Só Tinha De Ser Com Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (408,\n", " 'Free Speech For The Dumb',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (409, \"It's Electric\", 'Harris/Tatler', 'Garage Inc. (Disc 1)', 0.99),\n", " (410, 'Sabbra Cadabra', 'Black Sabbath', 'Garage Inc. (Disc 1)', 0.99),\n", " (411, 'Turn The Page', 'Seger', 'Garage Inc. (Disc 1)', 0.99),\n", " (412, 'Die Die My Darling', 'Danzig', 'Garage Inc. (Disc 1)', 0.99),\n", " (413, 'Loverman', 'Cave', 'Garage Inc. (Disc 1)', 0.99),\n", " (414, 'Mercyful Fate', 'Diamond/Shermann', 'Garage Inc. (Disc 1)', 0.99),\n", " (415,\n", " 'Astronomy',\n", " 'A.Bouchard/J.Bouchard/S.Pearlman',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (416, 'Whiskey In The Jar', 'Traditional', 'Garage Inc. (Disc 1)', 0.99),\n", " (417, \"Tuesday's Gone\", 'Collins/Van Zandt', 'Garage Inc. (Disc 1)', 0.99),\n", " (418,\n", " 'The More I See',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (419, 'A Kind Of Magic', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (420, 'Under Pressure', 'Queen & David Bowie', 'Greatest Hits II', 0.99),\n", " (421, 'Radio GA GA', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (422, 'I Want It All', 'Queen', 'Greatest Hits II', 0.99),\n", " (423, 'I Want To Break Free', 'John Deacon', 'Greatest Hits II', 0.99),\n", " (424, 'Innuendo', 'Queen', 'Greatest Hits II', 0.99),\n", " (425, \"It's A Hard Life\", 'Freddie Mercury', 'Greatest Hits II', 0.99),\n", " (426, 'Breakthru', 'Queen', 'Greatest Hits II', 0.99),\n", " (427, 'Who Wants To Live Forever', 'Brian May', 'Greatest Hits II', 0.99),\n", " (428, 'Headlong', 'Queen', 'Greatest Hits II', 0.99),\n", " (429, 'The Miracle', 'Queen', 'Greatest Hits II', 0.99),\n", " (430, \"I'm Going Slightly Mad\", 'Queen', 'Greatest Hits II', 0.99),\n", " (431, 'The Invisible Man', 'Queen', 'Greatest Hits II', 0.99),\n", " (432, 'Hammer To Fall', 'Brian May', 'Greatest Hits II', 0.99),\n", " (433,\n", " 'Friends Will Be Friends',\n", " 'Freddie Mercury & John Deacon',\n", " 'Greatest Hits II',\n", " 0.99),\n", " (434, 'The Show Must Go On', 'Queen', 'Greatest Hits II', 0.99),\n", " (435, 'One Vision', 'Queen', 'Greatest Hits II', 0.99),\n", " (436, 'Detroit Rock City', 'Paul Stanley, B. Ezrin', 'Greatest Kiss', 0.99),\n", " (437, 'Black Diamond', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (438, 'Hard Luck Woman', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (439,\n", " 'Sure Know Something',\n", " 'Paul Stanley, Vincent Poncia',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (440, 'Love Gun', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (441, 'Deuce', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (442, \"Goin' Blind\", 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (443, 'Shock Me', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (444,\n", " 'Do You Love Me',\n", " 'Paul Stanley, B. Ezrin, K. Fowley',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (445, 'She', 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (446,\n", " 'I Was Made For Loving You',\n", " 'Paul Stanley, Vincent Poncia, Desmond Child',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (447,\n", " 'Shout It Out Loud',\n", " 'Paul Stanley, Gene Simmons, B. Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (448, 'God Of Thunder', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (449, 'Calling Dr. Love', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (450, 'Beth', 'S. Penridge, Bob Ezrin, Peter Criss', 'Greatest Kiss', 0.99),\n", " (451, 'Strutter', 'Paul Stanley, Gene Simmons', 'Greatest Kiss', 0.99),\n", " (452,\n", " 'Rock And Roll All Nite',\n", " 'Paul Stanley, Gene Simmons',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (453, 'Cold Gin', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (454, 'Plaster Caster', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (455,\n", " \"God Gave Rock 'n' Roll To You\",\n", " 'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (456, 'Heart of the Night', None, 'Heart of the Night', 0.99),\n", " (457, 'De La Luz', None, 'Heart of the Night', 0.99),\n", " (458, 'Westwood Moon', None, 'Heart of the Night', 0.99),\n", " (459, 'Midnight', None, 'Heart of the Night', 0.99),\n", " (460, 'Playtime', None, 'Heart of the Night', 0.99),\n", " (461, 'Surrender', None, 'Heart of the Night', 0.99),\n", " (462, \"Valentino's\", None, 'Heart of the Night', 0.99),\n", " (463, 'Believe', None, 'Heart of the Night', 0.99),\n", " (464, 'As We Sleep', None, 'Heart of the Night', 0.99),\n", " (465, 'When Evening Falls', None, 'Heart of the Night', 0.99),\n", " (466, 'J Squared', None, 'Heart of the Night', 0.99),\n", " (467, 'Best Thing', None, 'Heart of the Night', 0.99),\n", " (468,\n", " 'Maria',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (469,\n", " 'Poprocks And Coke',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (470,\n", " 'Longview',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (471,\n", " 'Welcome To Paradise',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (472,\n", " 'Basket Case',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (473,\n", " 'When I Come Around',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (474,\n", " 'She',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (475,\n", " 'J.A.R. (Jason Andrew Relva)',\n", " 'Mike Dirnt -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (476,\n", " 'Geek Stink Breath',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (477,\n", " 'Brain Stew',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (478,\n", " 'Jaded',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (479,\n", " 'Walking Contradiction',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (480,\n", " 'Stuck With Me',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (481,\n", " \"Hitchin' A Ride\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (482,\n", " 'Good Riddance (Time Of Your Life)',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (483,\n", " 'Redundant',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (484,\n", " 'Nice Guys Finish Last',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (485,\n", " 'Minority',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (486,\n", " 'Warning',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (487,\n", " 'Waiting',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (488,\n", " \"Macy's Day Parade\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (489, 'Into The Light', 'David Coverdale', 'Into The Light', 0.99),\n", " (490, 'River Song', 'David Coverdale', 'Into The Light', 0.99),\n", " (491, 'She Give Me ...', 'David Coverdale', 'Into The Light', 0.99),\n", " (492, \"Don't You Cry\", 'David Coverdale', 'Into The Light', 0.99),\n", " (493, 'Love Is Blind', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (494, 'Slave', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (495,\n", " 'Cry For Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (496,\n", " 'Living On Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (497, 'Midnight Blue', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (498,\n", " 'Too Many Tears',\n", " 'Adrian Vanderberg/David Coverdale',\n", " 'Into The Light',\n", " 0.99),\n", " (499,\n", " \"Don't Lie To Me\",\n", " 'David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (500, 'Wherever You May Go', 'David Coverdale', 'Into The Light', 0.99),\n", " (501, 'Grito De Alerta', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (502,\n", " 'Não Dá Mais Pra Segurar (Explode Coração)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (503, 'Começaria Tudo Outra Vez', None, 'Meus Momentos', 0.99),\n", " (504, 'O Que É O Que É ?', None, 'Meus Momentos', 0.99),\n", " (505, 'Sangrando', 'Gonzaga Jr/Gonzaguinha', 'Meus Momentos', 0.99),\n", " (506, 'Diga Lá, Coração', None, 'Meus Momentos', 0.99),\n", " (507, 'Lindo Lago Do Amor', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (508, 'Eu Apenas Queria Que Voçê Soubesse', None, 'Meus Momentos', 0.99),\n", " (509, 'Com A Perna No Mundo', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (510, 'E Vamos À Luta', None, 'Meus Momentos', 0.99),\n", " (511,\n", " 'Um Homem Também Chora (Guerreiro Menino)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (512, 'Comportamento Geral', 'Gonzaga Jr', 'Meus Momentos', 0.99),\n", " (513, 'Ponto De Interrogação', None, 'Meus Momentos', 0.99),\n", " (514, 'Espere Por Mim, Morena', 'Gonzaguinha', 'Meus Momentos', 0.99),\n", " (529,\n", " 'Balada Do Louco',\n", " 'Arnaldo Baptista - Rita Lee',\n", " 'Minha História',\n", " 0.99),\n", " (530,\n", " 'Ando Meio Desligado',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (531, 'Top Top', 'Os Mutantes - Arnolpho Lima Filho', 'Minha História', 0.99),\n", " (532, 'Baby', 'Caetano Veloso', 'Minha História', 0.99),\n", " (533, 'A E O Z', 'Mutantes', 'Minha História', 0.99),\n", " (534,\n", " 'Panis Et Circenses',\n", " 'Caetano Veloso - Gilberto Gil',\n", " 'Minha História',\n", " 0.99),\n", " (535,\n", " 'Chão De Estrelas',\n", " 'Orestes Barbosa-Sílvio Caldas',\n", " 'Minha História',\n", " 0.99),\n", " (536,\n", " 'Vida De Cachorro',\n", " 'Rita Lee - Arnaldo Baptista - Sérgio Baptista',\n", " 'Minha História',\n", " 0.99),\n", " (537, 'Bat Macumba', 'Gilberto Gil - Caetano Veloso', 'Minha História', 0.99),\n", " (538, 'Desculpe Babe', 'Arnaldo Baptista - Rita Lee', 'Minha História', 0.99),\n", " (539,\n", " 'Rita Lee',\n", " 'Arnaldo Baptista/Rita Lee/Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (540,\n", " 'Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll',\n", " 'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho',\n", " 'Minha História',\n", " 0.99),\n", " (541,\n", " 'Banho De Lua',\n", " 'B. de Filippi - F. Migliaci - Versão: Fred Jorge',\n", " 'Minha História',\n", " 0.99),\n", " (542,\n", " 'Meu Refrigerador Não Funciona',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (543,\n", " 'Burn',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (544,\n", " 'Stormbringer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (545,\n", " 'Gypsy',\n", " 'Coverdale/Hughes/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (546,\n", " 'Lady Double Dealer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (547, 'Mistreated', 'Coverdale', 'MK III The Final Concerts [Disc 1]', 0.99),\n", " (548,\n", " 'Smoke On The Water',\n", " 'Gillan/Glover/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (549,\n", " 'You Fool No One',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (550,\n", " 'Custard Pie',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (551,\n", " 'The Rover',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (552,\n", " 'In My Time Of Dying',\n", " 'John Bonham/John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (553,\n", " 'Houses Of The Holy',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (554,\n", " 'Trampled Under Foot',\n", " 'John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (555, 'Kashmir', 'John Bonham', 'Physical Graffiti [Disc 1]', 0.99),\n", " (556,\n", " 'Imperatriz',\n", " 'Guga/Marquinho Lessa/Tuninho Professor',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (557, 'Beija-Flor', 'Caruso/Cleber/Deo/Osmar', 'Sambas De Enredo 2001', 0.99),\n", " (558,\n", " 'Viradouro',\n", " 'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (559,\n", " 'Mocidade',\n", " 'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (560,\n", " 'Unidos Da Tijuca',\n", " 'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (561,\n", " 'Salgueiro',\n", " 'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (562,\n", " 'Mangueira',\n", " \"Bizuca/Clóvis Pê/Gilson Bernini/Marelo D'Aguia\",\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (563,\n", " 'União Da Ilha',\n", " 'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (564,\n", " 'Grande Rio',\n", " 'Carlos Santos/Ciro/Claudio Russo/Zé Luiz',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (565,\n", " 'Portela',\n", " 'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (566,\n", " 'Caprichosos',\n", " 'Gule/Jorge 101/Lequinho/Luiz Piao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (567, 'Tradição', 'Adalto Magalha/Lourenco', 'Sambas De Enredo 2001', 0.99),\n", " (568,\n", " 'Império Serrano',\n", " 'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (569,\n", " 'Tuiuti',\n", " 'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (570, '(Da Le) Yaleo', 'Santana', 'Supernatural', 0.99),\n", " (571,\n", " 'Love Of My Life',\n", " 'Carlos Santana & Dave Matthews',\n", " 'Supernatural',\n", " 0.99),\n", " (572, 'Put Your Lights On', 'E. Shrody', 'Supernatural', 0.99),\n", " (573,\n", " 'Africa Bamba',\n", " 'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo',\n", " 'Supernatural',\n", " 0.99),\n", " (574, 'Smooth', 'M. Itaal Shur & Rob Thomas', 'Supernatural', 0.99),\n", " (575, 'Do You Like The Way', 'L. Hill', 'Supernatural', 0.99),\n", " (576,\n", " 'Maria Maria',\n", " 'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow',\n", " 'Supernatural',\n", " 0.99),\n", " (577, 'Migra', 'R. Taha, Carlos Santana & T. Lindsay', 'Supernatural', 0.99),\n", " (578, 'Corazon Espinado', 'F. Olivera', 'Supernatural', 0.99),\n", " (579,\n", " 'Wishing It Was',\n", " 'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita',\n", " 'Supernatural',\n", " 0.99),\n", " (580, 'El Farol', 'Carlos Santana & KC Porter', 'Supernatural', 0.99),\n", " (581, 'Primavera', 'KC Porter & JB Eckl', 'Supernatural', 0.99),\n", " (582, 'The Calling', 'Carlos Santana & C. Thompson', 'Supernatural', 0.99),\n", " (583, 'Solução', None, 'The Best of Ed Motta', 0.99),\n", " (584, 'Manuel', None, 'The Best of Ed Motta', 0.99),\n", " (585, 'Entre E Ouça', None, 'The Best of Ed Motta', 0.99),\n", " (586, 'Um Contrato Com Deus', None, 'The Best of Ed Motta', 0.99),\n", " (587, 'Um Jantar Pra Dois', None, 'The Best of Ed Motta', 0.99),\n", " (588, 'Vamos Dançar', None, 'The Best of Ed Motta', 0.99),\n", " (589, 'Um Love', None, 'The Best of Ed Motta', 0.99),\n", " (590, 'Seis Da Tarde', None, 'The Best of Ed Motta', 0.99),\n", " (591, 'Baixo Rio', None, 'The Best of Ed Motta', 0.99),\n", " (592, 'Sombras Do Meu Destino', None, 'The Best of Ed Motta', 0.99),\n", " (593, 'Do You Have Other Loves?', None, 'The Best of Ed Motta', 0.99),\n", " (594, 'Agora Que O Dia Acordou', None, 'The Best of Ed Motta', 0.99),\n", " (595, 'Já!!!', None, 'The Best of Ed Motta', 0.99),\n", " (596, 'A Rua', None, 'The Best of Ed Motta', 0.99),\n", " (597,\n", " \"Now's The Time\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (598, 'Jeru', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (599,\n", " 'Compulsion',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (600,\n", " 'Tempus Fugit',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (601, \"Walkin'\", 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (602,\n", " \"'Round Midnight\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (603,\n", " 'Bye Bye Blackbird',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (604,\n", " 'New Rhumba',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (605, 'Generique', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (606,\n", " 'Summertime',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (607, 'So What', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (608,\n", " 'The Pan Piper',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (609,\n", " 'Someday My Prince Will Come',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (610,\n", " 'My Funny Valentine (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (611, 'E.S.P.', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (612, 'Nefertiti', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (613,\n", " 'Petits Machins (Little Stuff)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (614,\n", " 'Miles Runs The Voodoo Down',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (615,\n", " 'Little Church (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (616,\n", " 'Black Satin',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (617,\n", " 'Jean Pierre (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (618,\n", " 'Time After Time',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (619, 'Portia', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (620,\n", " \"Space Truckin'\",\n", " 'Blackmore/Gillan/Glover/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (621,\n", " 'Going Down / Highway Star',\n", " 'Gillan/Glover/Lord/Nix - Blackmore/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (622,\n", " 'Mistreated (Alternate Version)',\n", " 'Blackmore/Coverdale',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (623,\n", " 'You Fool No One (Alternate Version)',\n", " 'Blackmore/Coverdale/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (624, 'Jeepers Creepers', None, \"Up An' Atom\", 0.99),\n", " (625, 'Blue Rythm Fantasy', None, \"Up An' Atom\", 0.99),\n", " (626, 'Drum Boogie', None, \"Up An' Atom\", 0.99),\n", " (627, 'Let Me Off Uptown', None, \"Up An' Atom\", 0.99),\n", " (628, 'Leave Us Leap', None, \"Up An' Atom\", 0.99),\n", " (629, 'Opus No.1', None, \"Up An' Atom\", 0.99),\n", " (630, 'Boogie Blues', None, \"Up An' Atom\", 0.99),\n", " (631, 'How High The Moon', None, \"Up An' Atom\", 0.99),\n", " (632, 'Disc Jockey Jump', None, \"Up An' Atom\", 0.99),\n", " (633, \"Up An' Atom\", None, \"Up An' Atom\", 0.99),\n", " (634, 'Bop Boogie', None, \"Up An' Atom\", 0.99),\n", " (635, 'Lemon Drop', None, \"Up An' Atom\", 0.99),\n", " (636, 'Coronation Drop', None, \"Up An' Atom\", 0.99),\n", " (637, 'Overtime', None, \"Up An' Atom\", 0.99),\n", " (638, 'Imagination', None, \"Up An' Atom\", 0.99),\n", " (639, \"Don't Take Your Love From Me\", None, \"Up An' Atom\", 0.99),\n", " (640, 'Midget', None, \"Up An' Atom\", 0.99),\n", " (641, \"I'm Coming Virginia\", None, \"Up An' Atom\", 0.99),\n", " (642, \"Payin' Them Dues Blues\", None, \"Up An' Atom\", 0.99),\n", " (643, 'Jungle Drums', None, \"Up An' Atom\", 0.99),\n", " (644, 'Showcase', None, \"Up An' Atom\", 0.99),\n", " (645, 'Swedish Schnapps', None, \"Up An' Atom\", 0.99),\n", " (646, 'Samba Da Bênção', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (647, 'Pot-Pourri N.º 4', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (648, 'Onde Anda Você', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (649, 'Samba Da Volta', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (650, 'Canto De Ossanha', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (651, 'Pot-Pourri N.º 5', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (652, 'Formosa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (653, 'Como É Duro Trabalhar', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (654, 'Minha Namorada', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (655, 'Por Que Será', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (656, 'Berimbau', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (657, 'Deixa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (658, 'Pot-Pourri N.º 2', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (659, 'Samba Em Prelúdio', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (660, 'Carta Ao Tom 74', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (661, 'Linha de Passe (João Bosco)', None, 'Vozes do MPB', 0.99),\n", " (662,\n", " 'Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)',\n", " None,\n", " 'Vozes do MPB',\n", " 0.99),\n", " (663, 'Chão de Giz (Elba Ramalho)', None, 'Vozes do MPB', 0.99),\n", " (664, 'Marina (Dorival Caymmi)', None, 'Vozes do MPB', 0.99),\n", " (665, 'Aquarela (Toquinho)', None, 'Vozes do MPB', 0.99),\n", " (666, 'Coração do Agreste (Fafá de Belém)', None, 'Vozes do MPB', 0.99),\n", " (667, 'Dona (Roupa Nova)', None, 'Vozes do MPB', 0.99),\n", " (668, 'Começaria Tudo Outra Vez (Maria Creuza)', None, 'Vozes do MPB', 0.99),\n", " (669, 'Caçador de Mim (Sá & Guarabyra)', None, 'Vozes do MPB', 0.99),\n", " (670, 'Romaria (Renato Teixeira)', None, 'Vozes do MPB', 0.99),\n", " (671, 'As Rosas Não Falam (Beth Carvalho)', None, 'Vozes do MPB', 0.99),\n", " (672, 'Wave (Os Cariocas)', None, 'Vozes do MPB', 0.99),\n", " (673, 'Garota de Ipanema (Dick Farney)', None, 'Vozes do MPB', 0.99),\n", " (674, 'Preciso Apender a Viver Só (Maysa)', None, 'Vozes do MPB', 0.99),\n", " (675, 'Susie Q', 'Hawkins-Lewis-Broadwater', 'Chronicle, Vol. 1', 0.99),\n", " (676, 'I Put A Spell On You', 'Jay Hawkins', 'Chronicle, Vol. 1', 0.99),\n", " (677, 'Proud Mary', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (678, 'Bad Moon Rising', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (679, 'Lodi', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (680, 'Green River', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (681, 'Commotion', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (682, 'Down On The Corner', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (683, 'Fortunate Son', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (684, \"Travelin' Band\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (685, \"Who'll Stop The Rain\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (686, 'Up Around The Bend', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (687, 'Run Through The Jungle', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (688, \"Lookin' Out My Back Door\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (689,\n", " 'Long As I Can See The Light',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (690,\n", " 'I Heard It Through The Grapevine',\n", " 'Whitfield-Strong',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (691,\n", " 'Have You Ever Seen The Rain?',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (692, 'Hey Tonight', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (693, 'Sweet Hitch-Hiker', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (694, 'Someday Never Comes', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (695, 'Walking On The Water', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (696, 'Suzie-Q, Pt. 2', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (697, 'Born On The Bayou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (698, 'Good Golly Miss Molly', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (699, 'Tombstone Shadow', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (700, 'Wrote A Song For Everyone', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (701,\n", " 'Night Time Is The Right Time',\n", " 'J.C. Fogerty',\n", " 'Chronicle, Vol. 2',\n", " 0.99),\n", " (702, 'Cotton Fields', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (703, 'It Came Out Of The Sky', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (704, \"Don't Look Now\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (705, 'The Midnight Special', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (706, 'Before You Accuse Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (707, 'My Baby Left Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (708, 'Pagan Baby', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (709, '(Wish I Could) Hideaway', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (710, \"It's Just A Thought\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (711, 'Molina', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (712, 'Born To Move', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (713, \"Lookin' For A Reason\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (714, 'Hello Mary Lou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (715,\n", " 'Gatas Extraordinárias',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (716, 'Brasil', None, 'Cássia Eller - Coleção Sem Limite [Disc 2]', 0.99),\n", " (717,\n", " 'Eu Sou Neguinha (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (718,\n", " 'Geração Coca-Cola (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (719,\n", " 'Lanterna Dos Afogados',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (720,\n", " 'Coroné Antonio Bento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (721,\n", " 'Você Passa, Eu Acho Graça (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (722,\n", " 'Meu Mundo Fica Completo (Com Você)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (723,\n", " '1° De Julho',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (724,\n", " 'Música Urbana 2',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (725,\n", " 'Vida Bandida (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (726,\n", " 'Palavras Ao Vento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (727,\n", " 'Não Sei O Que Eu Quero Da Vida',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (728,\n", " 'Woman Is The Nigger Of The World (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (729,\n", " 'Juventude Transviada (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (730, 'Malandragem', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (731, 'O Segundo Sol', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (732,\n", " 'Smells Like Teen Spirit (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (733, 'E.C.T.', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (734,\n", " 'Todo Amor Que Houver Nesta Vida',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (735, 'Metrô. Linha 743', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (736, 'Nós (Ao Vivo)', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (737,\n", " 'Na Cadência Do Samba',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (738,\n", " 'Admirável Gado Novo',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (739, 'Eleanor Rigby', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (740, 'Socorro', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (741, 'Blues Da Piedade', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (742, 'Rubens', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (743,\n", " 'Não Deixe O Samba Morrer - Cassia Eller e Alcione',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (744,\n", " 'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (745, \"Comin' Home\", 'Bolin/Coverdale/Paice', 'Come Taste The Band', 0.99),\n", " (746, 'Lady Luck', 'Cook/Coverdale', 'Come Taste The Band', 0.99),\n", " (747, \"Gettin' Tighter\", 'Bolin/Hughes', 'Come Taste The Band', 0.99),\n", " (748, 'Dealer', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (749, 'I Need Love', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (750, 'Drifter', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (751, 'Love Child', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (752,\n", " \"This Time Around / Owed to 'G' [Instrumental]\",\n", " 'Bolin/Hughes/Lord',\n", " 'Come Taste The Band',\n", " 0.99),\n", " (753, 'You Keep On Moving', 'Coverdale/Hughes', 'Come Taste The Band', 0.99),\n", " (754,\n", " 'Speed King',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (755,\n", " 'Bloodsucker',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (756,\n", " 'Child In Time',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (757,\n", " 'Flight Of The Rat',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (758,\n", " 'Into The Fire',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (759,\n", " 'Living Wreck',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (760,\n", " \"Hard Lovin' Man\",\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (761,\n", " 'Fireball',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (762,\n", " 'No No No',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (763,\n", " 'Strange Kind Of Woman',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (764,\n", " \"Anyone's Daughter\",\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (765,\n", " 'The Mule',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (766,\n", " 'Fools',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (767,\n", " 'No One Came',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (768,\n", " 'Knocking At Your Back Door',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (769,\n", " 'Bad Attitude',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (770,\n", " 'Child In Time (Son Of Aleric - Instrumental)',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (771,\n", " \"Nobody's Home\",\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (772,\n", " 'Black Night',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (773,\n", " 'Perfect Strangers',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (774,\n", " 'The Unwritten Law',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (775,\n", " 'Call Of The Wild',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (776,\n", " 'Hush',\n", " 'South',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (777,\n", " 'Smoke On The Water',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (778,\n", " 'Space Trucking',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (779,\n", " 'Highway Star',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (780,\n", " \"Maybe I'm A Leo\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (781,\n", " 'Pictures Of Home',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (782,\n", " 'Never Before',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (783,\n", " 'Smoke On The Water',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (784,\n", " 'Lazy',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (785,\n", " \"Space Truckin'\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (786,\n", " 'Vavoom : Ted The Mechanic',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (787,\n", " 'Loosen My Strings',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (788,\n", " 'Soon Forgotten',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (789,\n", " 'Sometimes I Feel Like Screaming',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (790,\n", " \"Cascades : I'm Not Your Lover\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (791,\n", " 'The Aviator',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (792,\n", " \"Rosa's Cantina\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (793,\n", " 'A Castle Full Of Rascals',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (794,\n", " 'A Touch Away',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (795,\n", " 'Hey Cisco',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (796,\n", " 'Somebody Stole My Guitar',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (797,\n", " 'The Purpendicular Waltz',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (798,\n", " 'King Of Dreams',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (799,\n", " 'The Cut Runs Deep',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (800,\n", " 'Fire In The Basement',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (801, 'Truth Hurts', 'Blackmore, Glover, Turner', 'Slaves And Masters', 0.99),\n", " (802,\n", " 'Breakfast In Bed',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (803,\n", " 'Love Conquers All',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (804,\n", " 'Fortuneteller',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (805,\n", " 'Too Much Is Not Enough',\n", " 'Turner, Held, Greenwood',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (806,\n", " 'Wicked Ways',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (807,\n", " 'Stormbringer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (808,\n", " \"Love Don't Mean a Thing\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (809,\n", " 'Holy Man',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (810,\n", " 'Hold On',\n", " 'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (811,\n", " 'Lady Double Dealer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (812,\n", " \"You Can't Do it Right (With the One You Love)\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (813,\n", " 'High Ball Shooter',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (814,\n", " 'The Gypsy',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (815,\n", " 'Soldier Of Fortune',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (816,\n", " 'The Battle Rages On',\n", " 'ian paice/jon lord',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (817, 'Lick It Up', 'roger glover', 'The Battle Rages On', 0.99),\n", " (818, 'Anya', 'jon lord/roger glover', 'The Battle Rages On', 0.99),\n", " (819, 'Talk About Love', 'roger glover', 'The Battle Rages On', 0.99),\n", " (820, 'Time To Kill', 'roger glover', 'The Battle Rages On', 0.99),\n", " (821, 'Ramshackle Man', 'roger glover', 'The Battle Rages On', 0.99),\n", " (822, 'A Twist In The Tail', 'roger glover', 'The Battle Rages On', 0.99),\n", " (823,\n", " 'Nasty Piece Of Work',\n", " 'jon lord/roger glover',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (824, 'Solitaire', 'roger glover', 'The Battle Rages On', 0.99),\n", " (825, \"One Man's Meat\", 'roger glover', 'The Battle Rages On', 0.99),\n", " (826,\n", " 'Pour Some Sugar On Me',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (827, 'Photograph', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (828, 'Love Bites', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (829, \"Let's Get Rocked\", None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (830,\n", " 'Two Steps Behind [Acoustic Version]',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (831, 'Animal', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (832, 'Heaven Is', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (833, 'Rocket', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (834,\n", " 'When Love & Hate Collide',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (835, 'Action', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (836,\n", " 'Make Love Like A Man',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (837, 'Armageddon It', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (838,\n", " 'Have You Ever Needed Someone So Bad',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (839, 'Rock Of Ages', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (840, 'Hysteria', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (841,\n", " \"Bringin' On The Heartbreak\",\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (842, 'Roll Call', 'Jim Beard', 'Outbreak', 0.99),\n", " (843,\n", " 'Otay',\n", " 'John Scofield, Robert Aries, Milton Chambers and Gary Grainger',\n", " 'Outbreak',\n", " 0.99),\n", " (844, 'Groovus Interruptus', 'Jim Beard', 'Outbreak', 0.99),\n", " (845, 'Paris On Mine', 'Jon Herington', 'Outbreak', 0.99),\n", " (846, 'In Time', 'Sylvester Stewart', 'Outbreak', 0.99),\n", " (847, 'Plan B', 'Dean Brown, Dennis Chambers & Jim Beard', 'Outbreak', 0.99),\n", " (848, 'Outbreak', 'Jim Beard & Jon Herington', 'Outbreak', 0.99),\n", " (849, 'Baltimore, DC', 'John Scofield', 'Outbreak', 0.99),\n", " (850,\n", " 'Talkin Loud and Saying Nothin',\n", " 'James Brown & Bobby Byrd',\n", " 'Outbreak',\n", " 0.99),\n", " (851, 'Pétala', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (852, 'Meu Bem-Querer', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (853, 'Cigano', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (854, 'Boa Noite', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (855, 'Fato Consumado', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (856, 'Faltando Um Pedaço', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (857, 'Álibi', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (858, 'Esquinas', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (859, 'Se...', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (860, 'Eu Te Devoro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (861, 'Lilás', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (862, 'Acelerou', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (863, 'Um Amor Puro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (864, 'Samurai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (865, 'Nem Um Dia', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (866, 'Oceano', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (867, 'Açai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (868, 'Serrado', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (869, 'Flor De Lis', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (870, 'Amar É Tudo', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (871, 'Azul', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (872, 'Seduzir', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (873,\n", " 'A Carta',\n", " 'Djavan - Gabriel, O Pensador',\n", " 'Djavan Ao Vivo - Vol. 1',\n", " 0.99),\n", " (874, 'Sina', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (875, 'Acelerou', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (876, 'Um Amor Puro', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (877, 'O Bêbado e a Equilibrista', None, 'Elis Regina-Minha História', 0.99),\n", " (878, 'O Mestre-Sala dos Mares', None, 'Elis Regina-Minha História', 0.99),\n", " (879, 'Atrás da Porta', None, 'Elis Regina-Minha História', 0.99),\n", " (880, 'Dois Pra Lá, Dois Pra Cá', None, 'Elis Regina-Minha História', 0.99),\n", " (881, 'Casa no Campo', None, 'Elis Regina-Minha História', 0.99),\n", " (882, 'Romaria', None, 'Elis Regina-Minha História', 0.99),\n", " (883, 'Alô, Alô, Marciano', None, 'Elis Regina-Minha História', 0.99),\n", " (884, 'Me Deixas Louca', None, 'Elis Regina-Minha História', 0.99),\n", " (885, 'Fascinação', None, 'Elis Regina-Minha História', 0.99),\n", " (886, 'Saudosa Maloca', None, 'Elis Regina-Minha História', 0.99),\n", " (887, 'As Aparências Enganam', None, 'Elis Regina-Minha História', 0.99),\n", " (888, 'Madalena', None, 'Elis Regina-Minha História', 0.99),\n", " (889, 'Maria Rosa', None, 'Elis Regina-Minha História', 0.99),\n", " (890, 'Aprendendo A Jogar', None, 'Elis Regina-Minha História', 0.99),\n", " (891, 'Layla', 'Clapton/Gordon', 'The Cream Of Clapton', 0.99),\n", " (892, 'Badge', 'Clapton/Harrison', 'The Cream Of Clapton', 0.99),\n", " (893, 'I Feel Free', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (894, 'Sunshine Of Your Love', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (895,\n", " 'Crossroads',\n", " 'Clapton/Robert Johnson Arr: Eric Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (896,\n", " 'Strange Brew',\n", " 'Clapton/Collins/Pappalardi',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (897, 'White Room', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (898, 'Bell Bottom Blues', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (899, 'Cocaine', 'Cale/Clapton', 'The Cream Of Clapton', 0.99),\n", " (900, 'I Shot The Sheriff', 'Marley', 'The Cream Of Clapton', 0.99),\n", " (901, 'After Midnight', 'Clapton/J. J. Cale', 'The Cream Of Clapton', 0.99),\n", " (902,\n", " 'Swing Low Sweet Chariot',\n", " 'Clapton/Trad. Arr. Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (903, 'Lay Down Sally', 'Clapton/Levy', 'The Cream Of Clapton', 0.99),\n", " (904,\n", " 'Knockin On Heavens Door',\n", " 'Clapton/Dylan',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (905, 'Wonderful Tonight', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (906, 'Let It Grow', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (907, 'Promises', 'Clapton/F.eldman/Linn', 'The Cream Of Clapton', 0.99),\n", " (908, \"I Can't Stand It\", 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (909, 'Signe', 'Eric Clapton', 'Unplugged', 0.99),\n", " (910, 'Before You Accuse Me', 'Eugene McDaniel', 'Unplugged', 0.99),\n", " (911, 'Hey Hey', 'Big Bill Broonzy', 'Unplugged', 0.99),\n", " (912, 'Tears In Heaven', 'Eric Clapton, Will Jennings', 'Unplugged', 0.99),\n", " (913, 'Lonely Stranger', 'Eric Clapton', 'Unplugged', 0.99),\n", " (914,\n", " \"Nobody Knows You When You're Down & Out\",\n", " 'Jimmy Cox',\n", " 'Unplugged',\n", " 0.99),\n", " (915, 'Layla', 'Eric Clapton, Jim Gordon', 'Unplugged', 0.99),\n", " (916, 'Running On Faith', 'Jerry Lynn Williams', 'Unplugged', 0.99),\n", " (917, \"Walkin' Blues\", 'Robert Johnson', 'Unplugged', 0.99),\n", " (918, 'Alberta', 'Traditional', 'Unplugged', 0.99),\n", " (919, 'San Francisco Bay Blues', 'Jesse Fuller', 'Unplugged', 0.99),\n", " (920, 'Malted Milk', 'Robert Johnson', 'Unplugged', 0.99),\n", " (921, 'Old Love', 'Eric Clapton, Robert Cray', 'Unplugged', 0.99),\n", " (922,\n", " \"Rollin' And Tumblin'\",\n", " 'McKinley Morgenfield (Muddy Waters)',\n", " 'Unplugged',\n", " 0.99),\n", " (1105, 'A Novidade', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1106, 'Tenho Sede', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1107, 'Refazenda', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1108, 'Realce', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1109, 'Esotérico', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1110, 'Drão', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1111, 'A Paz', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1112, 'Beira Mar', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1113, 'Sampa', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1114, 'Parabolicamará', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1115, 'Tempo Rei', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1116, 'Expresso 2222', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1117, 'Aquele Abraço', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1118, 'Palco', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1119, 'Toda Menina Baiana', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (1120, 'Sítio Do Pica-Pau Amarelo', 'Gilberto Gil', 'Unplugged', 0.99),\n", " (923, 'Collision', 'Jon Hudson/Mike Patton', 'Album Of The Year', 0.99),\n", " (924,\n", " 'Stripsearch',\n", " 'Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (925,\n", " 'Last Cup Of Sorrow',\n", " 'Bill Gould/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (926,\n", " 'Naked In Front Of The Computer',\n", " 'Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (927,\n", " 'Helpless',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (928,\n", " 'Mouth To Mouth',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (929,\n", " 'Ashes To Ashes',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (930,\n", " 'She Loves Me Not',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (931, 'Got That Feeling', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (932,\n", " 'Paths Of Glory',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (933, 'Home Sick Home', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (934, 'Pristina', 'Bill Gould/Mike Patton', 'Album Of The Year', 0.99),\n", " (935, 'Land Of Sunshine', None, 'Angel Dust', 0.99),\n", " (936, 'Caffeine', None, 'Angel Dust', 0.99),\n", " (937, 'Midlife Crisis', None, 'Angel Dust', 0.99),\n", " (938, 'RV', None, 'Angel Dust', 0.99),\n", " (939, 'Smaller And Smaller', None, 'Angel Dust', 0.99),\n", " (940, \"Everything's Ruined\", None, 'Angel Dust', 0.99),\n", " (941, 'Malpractice', None, 'Angel Dust', 0.99),\n", " (942, 'Kindergarten', None, 'Angel Dust', 0.99),\n", " (943, 'Be Aggressive', None, 'Angel Dust', 0.99),\n", " (944, 'A Small Victory', None, 'Angel Dust', 0.99),\n", " (945, 'Crack Hitler', None, 'Angel Dust', 0.99),\n", " (946, 'Jizzlobber', None, 'Angel Dust', 0.99),\n", " (947, 'Midnight Cowboy', None, 'Angel Dust', 0.99),\n", " (948, 'Easy', None, 'Angel Dust', 0.99),\n", " (949,\n", " 'Get Out',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (950,\n", " 'Ricochet',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (951,\n", " 'Evidence',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (952,\n", " 'The Gentle Art Of Making Enemies',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (953,\n", " 'Star A.D.',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (954,\n", " 'Cuckoo For Caca',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (955,\n", " 'Caralho Voador',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (956,\n", " 'Ugly In The Morning',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (957,\n", " 'Digging The Grave',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (958,\n", " 'Take This Bottle',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (959,\n", " 'King For A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (960,\n", " 'What A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (961,\n", " 'The Last To Know',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (962,\n", " 'Just A Man',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (963,\n", " 'Absolute Zero',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (964, 'From Out Of Nowhere', 'Faith No More', 'The Real Thing', 0.99),\n", " (965, 'Epic', 'Faith No More', 'The Real Thing', 0.99),\n", " (966, 'Falling To Pieces', 'Faith No More', 'The Real Thing', 0.99),\n", " (967, \"Surprise! You're Dead!\", 'Faith No More', 'The Real Thing', 0.99),\n", " (968, 'Zombie Eaters', 'Faith No More', 'The Real Thing', 0.99),\n", " (969, 'The Real Thing', 'Faith No More', 'The Real Thing', 0.99),\n", " (970, 'Underwater Love', 'Faith No More', 'The Real Thing', 0.99),\n", " (971, 'The Morning After', 'Faith No More', 'The Real Thing', 0.99),\n", " (972, 'Woodpecker From Mars', 'Faith No More', 'The Real Thing', 0.99),\n", " (973,\n", " 'War Pigs',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'The Real Thing',\n", " 0.99),\n", " (974, 'Edge Of The World', 'Faith No More', 'The Real Thing', 0.99),\n", " (975, 'Deixa Entrar', None, 'Deixa Entrar', 0.99),\n", " (976, 'Falamansa Song', None, 'Deixa Entrar', 0.99),\n", " (977, 'Xote Dos Milagres', None, 'Deixa Entrar', 0.99),\n", " (978, 'Rindo À Toa', None, 'Deixa Entrar', 0.99),\n", " (979, 'Confidência', None, 'Deixa Entrar', 0.99),\n", " (980, 'Forró De Tóquio', None, 'Deixa Entrar', 0.99),\n", " (981, 'Zeca Violeiro', None, 'Deixa Entrar', 0.99),\n", " (982, 'Avisa', None, 'Deixa Entrar', 0.99),\n", " (983, 'Principiando/Decolagem', None, 'Deixa Entrar', 0.99),\n", " (984, 'Asas', None, 'Deixa Entrar', 0.99),\n", " ...]" ] }, "metadata": { "tags": [] }, "execution_count": 9 } ] }, { "cell_type": "markdown", "metadata": { "id": "ITltEad9taTs", "colab_type": "text" }, "source": [ "As we can see, the songs that do not have any album do not appear (i.e. songs 2 - 5). A *LEFT JOIN* will give us all songs from Tracks, and complete the information from albums if available." ] }, { "cell_type": "code", "metadata": { "scrolled": true, "id": "8C4zzlWttaTs", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 43445 }, "outputId": "c4c14087-284e-4bdb-b626-0b4c2930955d" }, "source": [ "query = \"SELECT T.trackid, T.name, T.composer, A.title, T.unitprice FROM tracks as T LEFT JOIN Albums as A \"\n", "query += \"ON T.AlbumID = A.AlbumID\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 10, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[(1,\n", " 'For Those About To Rock (We Salute You)',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (2, 'Balls to the Wall', None, 'Balls to the Wall', 0.99),\n", " (3,\n", " 'Fast As a Shark',\n", " 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (4,\n", " 'Restless and Wild',\n", " 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (5,\n", " 'Princess of the Dawn',\n", " 'Deaffy & R.A. Smith-Diesel',\n", " 'Restless and Wild',\n", " 0.99),\n", " (6,\n", " 'Put The Finger On You',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (7,\n", " \"Let's Get It Up\",\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (8,\n", " 'Inject The Venom',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (9,\n", " 'Snowballed',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (10,\n", " 'Evil Walks',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (11,\n", " 'C.O.D.',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (12,\n", " 'Breaking The Rules',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (13,\n", " 'Night Of The Long Knives',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (14,\n", " 'Spellbound',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (15, 'Go Down', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (16, 'Dog Eat Dog', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (17, 'Let There Be Rock', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (18, 'Bad Boy Boogie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (19, 'Problem Child', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (20, 'Overdose', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (21, \"Hell Ain't A Bad Place To Be\", 'AC/DC', 'Let There Be Rock', 0.99),\n", " (22, 'Whole Lotta Rosie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (23,\n", " 'Walk On Water',\n", " 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw',\n", " 'Big Ones',\n", " 0.99),\n", " (24, 'Love In An Elevator', 'Steven Tyler, Joe Perry', 'Big Ones', 0.99),\n", " (25,\n", " 'Rag Doll',\n", " 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight',\n", " 'Big Ones',\n", " 0.99),\n", " (26,\n", " 'What It Takes',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (27,\n", " 'Dude (Looks Like A Lady)',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (28, \"Janie's Got A Gun\", 'Steven Tyler, Tom Hamilton', 'Big Ones', 0.99),\n", " (29, \"Cryin'\", 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (30, 'Amazing', 'Steven Tyler, Richie Supa', 'Big Ones', 0.99),\n", " (31, 'Blind Man', 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (32, 'Deuces Are Wild', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (33, 'The Other Side', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (34, 'Crazy', 'Steven Tyler, Joe Perry, Desmond Child', 'Big Ones', 0.99),\n", " (35,\n", " 'Eat The Rich',\n", " 'Steven Tyler, Joe Perry, Jim Vallance',\n", " 'Big Ones',\n", " 0.99),\n", " (36, 'Angel', 'Steven Tyler, Desmond Child', 'Big Ones', 0.99),\n", " (37,\n", " \"Livin' On The Edge\",\n", " 'Steven Tyler, Joe Perry, Mark Hudson',\n", " 'Big Ones',\n", " 0.99),\n", " (38,\n", " 'All I Really Want',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (39,\n", " 'You Oughta Know',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (40,\n", " 'Perfect',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (41,\n", " 'Hand In My Pocket',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (42,\n", " 'Right Through You',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (43,\n", " 'Forgiven',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (44,\n", " 'You Learn',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (45,\n", " 'Head Over Feet',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (46,\n", " 'Mary Jane',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (47,\n", " 'Ironic',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (48,\n", " 'Not The Doctor',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (49,\n", " 'Wake Up',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (50,\n", " 'You Oughta Know (Alternate)',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (51, 'We Die Young', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (52, 'Man In The Box', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (53, 'Sea Of Sorrow', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (54, 'Bleed The Freak', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (55, \"I Can't Remember\", 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (56, 'Love, Hate, Love', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (57,\n", " \"It Ain't Like That\",\n", " 'Jerry Cantrell, Michael Starr, Sean Kinney',\n", " 'Facelift',\n", " 0.99),\n", " (58, 'Sunshine', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (59, 'Put You Down', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (60,\n", " 'Confusion',\n", " 'Jerry Cantrell, Michael Starr, Layne Staley',\n", " 'Facelift',\n", " 0.99),\n", " (61, 'I Know Somethin (Bout You)', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (62, 'Real Thing', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (63, 'Desafinado', None, 'Warner 25 Anos', 0.99),\n", " (64, 'Garota De Ipanema', None, 'Warner 25 Anos', 0.99),\n", " (65, 'Samba De Uma Nota Só (One Note Samba)', None, 'Warner 25 Anos', 0.99),\n", " (66, 'Por Causa De Você', None, 'Warner 25 Anos', 0.99),\n", " (67, 'Ligia', None, 'Warner 25 Anos', 0.99),\n", " (68, 'Fotografia', None, 'Warner 25 Anos', 0.99),\n", " (69, 'Dindi (Dindi)', None, 'Warner 25 Anos', 0.99),\n", " (70,\n", " 'Se Todos Fossem Iguais A Você (Instrumental)',\n", " None,\n", " 'Warner 25 Anos',\n", " 0.99),\n", " (71, 'Falando De Amor', None, 'Warner 25 Anos', 0.99),\n", " (72, 'Angela', None, 'Warner 25 Anos', 0.99),\n", " (73, 'Corcovado (Quiet Nights Of Quiet Stars)', None, 'Warner 25 Anos', 0.99),\n", " (74, 'Outra Vez', None, 'Warner 25 Anos', 0.99),\n", " (75, 'O Boto (Bôto)', None, 'Warner 25 Anos', 0.99),\n", " (76, 'Canta, Canta Mais', None, 'Warner 25 Anos', 0.99),\n", " (77, 'Enter Sandman', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (78,\n", " 'Master Of Puppets',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (79,\n", " 'Harvester Of Sorrow',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (80,\n", " 'The Unforgiven',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (81, 'Sad But True', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (82,\n", " 'Creeping Death',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (83,\n", " 'Wherever I May Roam',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (84,\n", " 'Welcome Home (Sanitarium)',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (85, 'Cochise', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (86, 'Show Me How to Live', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (87, 'Gasoline', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (88, 'What You Are', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (89, 'Like a Stone', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (90, 'Set It Off', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (91, 'Shadow on the Sun', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (92, 'I am the Highway', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (93, 'Exploder', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (94, 'Hypnotize', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (95, \"Bring'em Back Alive\", 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (96, 'Light My Way', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (97, 'Getaway Car', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (98,\n", " 'The Last Remaining Light',\n", " 'Audioslave/Chris Cornell',\n", " 'Audioslave',\n", " 0.99),\n", " (99,\n", " 'Your Time Has Come',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (100,\n", " 'Out Of Exile',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (101,\n", " 'Be Yourself',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (102,\n", " \"Doesn't Remind Me\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (103,\n", " 'Drown Me Slowly',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (104,\n", " \"Heaven's Dead\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (105, 'The Worm', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (106,\n", " 'Man Or Animal',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (107,\n", " 'Yesterday To Tomorrow',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (108,\n", " 'Dandelion',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (109, '#1 Zero', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (110,\n", " 'The Curse',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (111,\n", " 'Money',\n", " 'Berry Gordy, Jr./Janie Bradford',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (112,\n", " 'Long Tall Sally',\n", " 'Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (113, 'Bad Boy', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (114,\n", " 'Twist And Shout',\n", " 'Bert Russell/Phil Medley',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (115,\n", " 'Please Mr. Postman',\n", " 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (116,\n", " \"C'Mon Everybody\",\n", " 'Eddie Cochran/Jerry Capehart',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (117, \"Rock 'N' Roll Music\", 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (118, 'Slow Down', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (119, 'Roadrunner', 'Bo Diddley', 'BackBeat Soundtrack', 0.99),\n", " (120, 'Carol', 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (121, 'Good Golly Miss Molly', 'Little Richard', 'BackBeat Soundtrack', 0.99),\n", " (122, '20 Flight Rock', 'Ned Fairchild', 'BackBeat Soundtrack', 0.99),\n", " (123, 'Quadrant', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (124,\n", " \"Snoopy's search-Red baron\",\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (125,\n", " 'Spanish moss-\"A sound portrait\"-Spanish moss',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (126, 'Moon germs', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (127, 'Stratus', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (128,\n", " 'The pleasant pheasant',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (129, 'Solo-Panhandler', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (130, 'Do what cha wanna', 'George Duke', 'The Best Of Billy Cobham', 0.99),\n", " (131,\n", " 'Intro/ Low Down',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (132,\n", " '13 Years Of Grief',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (133,\n", " 'Stronger Than Death',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (134, 'All For You', None, 'Alcohol Fueled Brewtality Live! [Disc 1]', 0.99),\n", " (135,\n", " 'Super Terrorizer',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (136,\n", " 'Phoney Smile Fake Hellos',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (137,\n", " 'Lost My Better Half',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (138,\n", " 'Bored To Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (139,\n", " 'A.N.D.R.O.T.A.Z.',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (140,\n", " 'Born To Booze',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (141,\n", " 'World Of Trouble',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (142,\n", " 'No More Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (143,\n", " 'The Begining... At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (144,\n", " 'Heart Of Gold',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (145, 'Snowblind', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (146, 'Like A Bird', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (147,\n", " 'Blood In The Wall',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (148,\n", " 'The Beginning...At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (149, 'Black Sabbath', None, 'Black Sabbath', 0.99),\n", " (150, 'The Wizard', None, 'Black Sabbath', 0.99),\n", " (151, 'Behind The Wall Of Sleep', None, 'Black Sabbath', 0.99),\n", " (152, 'N.I.B.', None, 'Black Sabbath', 0.99),\n", " (153, 'Evil Woman', None, 'Black Sabbath', 0.99),\n", " (154, 'Sleeping Village', None, 'Black Sabbath', 0.99),\n", " (155, 'Warning', None, 'Black Sabbath', 0.99),\n", " (156,\n", " 'Wheels Of Confusion / The Straightener',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (157,\n", " \"Tomorrow's Dream\",\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (158,\n", " 'Changes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (159,\n", " 'FX',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (160,\n", " 'Supernaut',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (161,\n", " 'Snowblind',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (162,\n", " 'Cornucopia',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (163,\n", " 'Laguna Sunrise',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (164,\n", " 'St. Vitus Dance',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (165,\n", " 'Under The Sun/Every Day Comes and Goes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (166, 'Smoked Pork', None, 'Body Count', 0.99),\n", " (167, \"Body Count's In The House\", None, 'Body Count', 0.99),\n", " (168, 'Now Sports', None, 'Body Count', 0.99),\n", " (169, 'Body Count', None, 'Body Count', 0.99),\n", " (170, 'A Statistic', None, 'Body Count', 0.99),\n", " (171, 'Bowels Of The Devil', None, 'Body Count', 0.99),\n", " (172, 'The Real Problem', None, 'Body Count', 0.99),\n", " (173, 'KKK Bitch', None, 'Body Count', 0.99),\n", " (174, 'D Note', None, 'Body Count', 0.99),\n", " (175, 'Voodoo', None, 'Body Count', 0.99),\n", " (176, 'The Winner Loses', None, 'Body Count', 0.99),\n", " (177, 'There Goes The Neighborhood', None, 'Body Count', 0.99),\n", " (178, 'Oprah', None, 'Body Count', 0.99),\n", " (179, 'Evil Dick', None, 'Body Count', 0.99),\n", " (180, 'Body Count Anthem', None, 'Body Count', 0.99),\n", " (181, \"Momma's Gotta Die Tonight\", None, 'Body Count', 0.99),\n", " (182, 'Freedom Of Speech', None, 'Body Count', 0.99),\n", " (183, 'King In Crimson', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (184, 'Chemical Wedding', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (185, 'The Tower', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (186, 'Killing Floor', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (187, 'Book Of Thel', 'Eddie Casillas/Roy Z', 'Chemical Wedding', 0.99),\n", " (188, 'Gates Of Urizen', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (189, 'Jerusalem', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (190, 'Trupets Of Jericho', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (191, 'Machine Men', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (192, 'The Alchemist', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (193, 'Realword', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (194,\n", " 'First Time I Met The Blues',\n", " 'Eurreal Montgomery',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (195,\n", " 'Let Me Love You Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (196,\n", " 'Stone Crazy',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (197,\n", " 'Pretty Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (198,\n", " 'When My Left Eye Jumps',\n", " 'Al Perkins/Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (199,\n", " 'Leave My Girl Alone',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (200,\n", " 'She Suits Me To A Tee',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (201,\n", " 'Keep It To Myself (Aka Keep It To Yourself)',\n", " 'Sonny Boy Williamson [I]',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (202,\n", " 'My Time After Awhile',\n", " 'Robert Geddins/Ron Badger/Sheldon Feinberg',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (203,\n", " 'Too Many Ways (Alternate)',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (204,\n", " \"Talkin' 'Bout Women Obviously\",\n", " 'Amos Blakemore/Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (205, 'Jorge Da Capadócia', 'Jorge Ben', 'Prenda Minha', 0.99),\n", " (206, 'Prenda Minha', 'Tradicional', 'Prenda Minha', 0.99),\n", " (207, 'Meditação', 'Tom Jobim - Newton Mendoça', 'Prenda Minha', 0.99),\n", " (208, 'Terra', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (209, 'Eclipse Oculto', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (210, 'Texto \"Verdade Tropical\"', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (211, 'Bem Devagar', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (212, 'Drão', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (213, 'Saudosismo', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (214, 'Carolina', 'Chico Buarque', 'Prenda Minha', 0.99),\n", " (215, 'Sozinho', 'Peninha', 'Prenda Minha', 0.99),\n", " (216, 'Esse Cara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (217, 'Mel', 'Caetano Veloso - Waly Salomão', 'Prenda Minha', 0.99),\n", " (218, 'Linha Do Equador', 'Caetano Veloso - Djavan', 'Prenda Minha', 0.99),\n", " (219, 'Odara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (220, 'A Luz De Tieta', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (221,\n", " 'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu',\n", " 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto',\n", " 'Prenda Minha',\n", " 0.99),\n", " (222, 'Vida Boa', 'Fausto Nilo - Armandinho', 'Prenda Minha', 0.99),\n", " (223, 'Sozinho (Hitmakers Classic Mix)', None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (224,\n", " 'Sozinho (Hitmakers Classic Radio Edit)',\n", " None,\n", " 'Sozinho Remix Ao Vivo',\n", " 0.99),\n", " (225, \"Sozinho (Caêdrum 'n' Bass)\", None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (226, 'Carolina', None, 'Minha Historia', 0.99),\n", " (227, 'Essa Moça Ta Diferente', None, 'Minha Historia', 0.99),\n", " (228, 'Vai Passar', None, 'Minha Historia', 0.99),\n", " (229, 'Samba De Orly', None, 'Minha Historia', 0.99),\n", " (230, 'Bye, Bye Brasil', None, 'Minha Historia', 0.99),\n", " (231, 'Atras Da Porta', None, 'Minha Historia', 0.99),\n", " (232, 'Tatuagem', None, 'Minha Historia', 0.99),\n", " (233, 'O Que Será (À Flor Da Terra)', None, 'Minha Historia', 0.99),\n", " (234, 'Morena De Angola', None, 'Minha Historia', 0.99),\n", " (235, 'Apesar De Você', None, 'Minha Historia', 0.99),\n", " (236, 'A Banda', None, 'Minha Historia', 0.99),\n", " (237, 'Minha Historia', None, 'Minha Historia', 0.99),\n", " (238, 'Com Açúcar E Com Afeto', None, 'Minha Historia', 0.99),\n", " (239, 'Brejo Da Cruz', None, 'Minha Historia', 0.99),\n", " (240, 'Meu Caro Amigo', None, 'Minha Historia', 0.99),\n", " (241, 'Geni E O Zepelim', None, 'Minha Historia', 0.99),\n", " (242, 'Trocando Em Miúdos', None, 'Minha Historia', 0.99),\n", " (243, 'Vai Trabalhar Vagabundo', None, 'Minha Historia', 0.99),\n", " (244, \"Gota D'água\", None, 'Minha Historia', 0.99),\n", " (245, 'Construção / Deus Lhe Pague', None, 'Minha Historia', 0.99),\n", " (246, 'Mateus Enter', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (247, 'O Cidadão Do Mundo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (248, 'Etnia', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (249,\n", " 'Quilombo Groove [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (250, 'Macô', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (251, 'Um Passeio No Mundo Livre', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (252, 'Samba Do Lado', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (253, 'Maracatu Atômico', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (254,\n", " 'O Encontro De Isaac Asimov Com Santos Dumont No Céu',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (255, 'Corpo De Lama', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (256, 'Sobremesa', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (257, 'Manguetown', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (258, 'Um Satélite Na Cabeça', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (259,\n", " 'Baião Ambiental [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (260, 'Sangue De Bairro', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (261, 'Enquanto O Mundo Explode', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (262, 'Interlude Zumbi', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (263, 'Criança De Domingo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (264, 'Amor De Muito', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (265, 'Samidarish [Instrumental]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (266,\n", " 'Maracatu Atômico [Atomic Version]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (267,\n", " 'Maracatu Atômico [Ragga Mix]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (268, 'Maracatu Atômico [Trip Hop]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (269, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (270, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (271, 'Rios Pontes & Overdrives', None, 'Da Lama Ao Caos', 0.99),\n", " (272, 'Cidade', None, 'Da Lama Ao Caos', 0.99),\n", " (273, 'Praiera', None, 'Da Lama Ao Caos', 0.99),\n", " (274, 'Samba Makossa', None, 'Da Lama Ao Caos', 0.99),\n", " (275, 'Da Lama Ao Caos', None, 'Da Lama Ao Caos', 0.99),\n", " (276, 'Maracatu De Tiro Certeiro', None, 'Da Lama Ao Caos', 0.99),\n", " (277, 'Salustiano Song', None, 'Da Lama Ao Caos', 0.99),\n", " (278, 'Antene Se', None, 'Da Lama Ao Caos', 0.99),\n", " (279, 'Risoflora', None, 'Da Lama Ao Caos', 0.99),\n", " (280, 'Lixo Do Mangue', None, 'Da Lama Ao Caos', 0.99),\n", " (281, 'Computadores Fazem Arte', None, 'Da Lama Ao Caos', 0.99),\n", " (282,\n", " 'Girassol',\n", " 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (283,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (284, 'Johnny B. Goode', 'Chuck Berry', 'Acústico MTV [Live]', 0.99),\n", " (285, 'Soldado Da Paz', 'Herbert Vianna', 'Acústico MTV [Live]', 0.99),\n", " (286,\n", " 'Firmamento',\n", " 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (287, 'Extra', 'Gilberto Gil', 'Acústico MTV [Live]', 0.99),\n", " (288,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (289,\n", " 'Podes Crer',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (290,\n", " 'A Estrada',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (291, 'Berlim', 'Da Gama/Toni Garrido', 'Acústico MTV [Live]', 0.99),\n", " (292,\n", " 'Já Foi',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (293,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (294,\n", " 'Pensamento',\n", " 'Bino Farias/Da Gamma/Lazão/Rás Bernard',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (295,\n", " 'Conciliação',\n", " 'Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (296,\n", " 'Realidade Virtual',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (297,\n", " 'Mensagem',\n", " 'Bino Farias/Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (298,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazão',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (299,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (300,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (301,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (302, 'A Estrada', 'Da Gama/Lazao/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (303,\n", " 'Falar A Verdade',\n", " 'Bino/Da Gama/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (304,\n", " 'Firmamento',\n", " 'Harry Lawes/Winston Foster-Vers',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (305, 'Pensamento', 'Bino/Da Gama/Ras Bernardo', 'Cidade Negra - Hits', 0.99),\n", " (306,\n", " 'Realidade Virtual',\n", " 'Bino/Da Gamma/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (307, 'Doutor', 'Bino/Da Gama/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (308,\n", " 'Na Frente Da TV',\n", " 'Bino/Da Gama/Lazao/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (309, 'Downtown', 'Cidade Negra', 'Cidade Negra - Hits', 0.99),\n", " (310, 'Sábado A Noite', 'Lulu Santos', 'Cidade Negra - Hits', 0.99),\n", " (311,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazao',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (312,\n", " 'Eu Também Quero Beijar',\n", " 'Fausto Nilo/Moraes Moreira/Pepeu Gomes',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (313, 'Noite Do Prazer', None, 'Na Pista', 0.99),\n", " (314, 'À Francesa', None, 'Na Pista', 0.99),\n", " (315, 'Cada Um Cada Um (A Namoradeira)', None, 'Na Pista', 0.99),\n", " (316, 'Linha Do Equador', None, 'Na Pista', 0.99),\n", " (317, 'Amor Demais', None, 'Na Pista', 0.99),\n", " (318, 'Férias', None, 'Na Pista', 0.99),\n", " (319, 'Gostava Tanto De Você', None, 'Na Pista', 0.99),\n", " (320, 'Flor Do Futuro', None, 'Na Pista', 0.99),\n", " (321, 'Felicidade Urgente', None, 'Na Pista', 0.99),\n", " (322, 'Livre Pra Viver', None, 'Na Pista', 0.99),\n", " (323,\n", " 'Dig-Dig, Lambe-Lambe (Ao Vivo)',\n", " 'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (324,\n", " 'Pererê',\n", " 'Augusto Conceição/Chiclete Com Banana',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (325, 'TriboTchan', 'Cal Adan/Paulo Levi', 'Axé Bahia 2001', 0.99),\n", " (326,\n", " 'Tapa Aqui, Descobre Ali',\n", " 'Paulo Levi/W. Rangel',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (327, 'Daniela', 'Jorge Cardoso/Pierre Onasis', 'Axé Bahia 2001', 0.99),\n", " (328,\n", " 'Bate Lata',\n", " 'Fábio Nolasco/Gal Sales/Ivan Brasil',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (329,\n", " 'Garotas do Brasil',\n", " 'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (330,\n", " 'Levada do Amor (Ailoviu)',\n", " 'Luiz Wanderley/Paulo Levi',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (331,\n", " 'Lavadeira',\n", " 'Do Vale, Valverde/Gal Oliveira/Luciano Pinto',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (332,\n", " 'Reboladeira',\n", " 'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (333,\n", " 'É que Nessa Encarnação Eu Nasci Manga',\n", " 'Lucina/Luli',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (334,\n", " 'Reggae Tchan',\n", " 'Cal Adan/Del Rey, Tension/Edu Casanova',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (335, 'My Love', 'Jauperi/Zeu Góes', 'Axé Bahia 2001', 0.99),\n", " (336,\n", " 'Latinha de Cerveja',\n", " 'Adriano Bernandes/Edmar Neves',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (337,\n", " 'You Shook Me',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (338,\n", " \"I Can't Quit You Baby\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (339,\n", " 'Communication Breakdown',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (340,\n", " 'Dazed and Confused',\n", " 'Jimmy Page',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (341,\n", " 'The Girl I Love She Got Long Black Wavy Hair',\n", " 'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (342,\n", " 'What is and Should Never Be',\n", " 'Jimmy Page/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (343,\n", " 'Communication Breakdown(2)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (344,\n", " 'Travelling Riverside Blues',\n", " 'Jimmy Page/Robert Johnson/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (345,\n", " 'Whole Lotta Love',\n", " 'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (346,\n", " \"Somethin' Else\",\n", " 'Bob Cochran/Sharon Sheeley',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (347,\n", " 'Communication Breakdown(3)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (348,\n", " \"I Can't Quit You Baby(2)\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (349,\n", " 'You Shook Me(2)',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (350,\n", " 'How Many More Times',\n", " 'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (351, 'Debra Kadabra', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (352, 'Carolina Hard-Core Ecstasy', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (353,\n", " 'Sam With The Showing Scalp Flat Top',\n", " 'Don Van Vliet',\n", " 'Bongo Fury',\n", " 0.99),\n", " (354,\n", " \"Poofter's Froth Wyoming Plans Ahead\",\n", " 'Frank Zappa',\n", " 'Bongo Fury',\n", " 0.99),\n", " (355, '200 Years Old', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (356, 'Cucamonga', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (357, 'Advance Romance', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (358, 'Man With The Woman Head', 'Don Van Vliet', 'Bongo Fury', 0.99),\n", " (359, 'Muffin Man', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (360, 'Vai-Vai 2001', None, 'Carnaval 2001', 0.99),\n", " (361, 'X-9 2001', None, 'Carnaval 2001', 0.99),\n", " (362, 'Gavioes 2001', None, 'Carnaval 2001', 0.99),\n", " (363, 'Nene 2001', None, 'Carnaval 2001', 0.99),\n", " (364, 'Rosas De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (365, 'Mocidade Alegre 2001', None, 'Carnaval 2001', 0.99),\n", " (366, 'Camisa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (367, 'Leandro De Itaquera 2001', None, 'Carnaval 2001', 0.99),\n", " (368, 'Tucuruvi 2001', None, 'Carnaval 2001', 0.99),\n", " (369, 'Aguia De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (370, 'Ipiranga 2001', None, 'Carnaval 2001', 0.99),\n", " (371, 'Morro Da Casa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (372, 'Perola Negra 2001', None, 'Carnaval 2001', 0.99),\n", " (373, 'Sao Lucas 2001', None, 'Carnaval 2001', 0.99),\n", " (374, 'Guanabara', 'Marcos Valle', 'Chill: Brazil (Disc 1)', 0.99),\n", " (375, 'Mas Que Nada', 'Jorge Ben', 'Chill: Brazil (Disc 1)', 0.99),\n", " (376,\n", " 'Vôo Sobre o Horizonte',\n", " 'J.r.Bertami/Parana',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (377, 'A Paz', 'Donato/Gilberto Gil', 'Chill: Brazil (Disc 1)', 0.99),\n", " (378,\n", " 'Wave (Vou te Contar)',\n", " 'Antonio Carlos Jobim',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (379,\n", " 'Água de Beber',\n", " 'Antonio Carlos Jobim/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (380,\n", " 'Samba da Bençaco',\n", " 'Baden Powell/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (381,\n", " 'Pode Parar',\n", " 'Jorge Vercilo/Jota Maranhao',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (382, 'Menino do Rio', 'Caetano Veloso', 'Chill: Brazil (Disc 1)', 0.99),\n", " (383,\n", " 'Ando Meio Desligado',\n", " 'Caetano Veloso',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (384,\n", " 'Mistério da Raça',\n", " 'Luiz Melodia/Ricardo Augusto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (385, 'All Star', 'Nando Reis', 'Chill: Brazil (Disc 1)', 0.99),\n", " (386,\n", " 'Menina Bonita',\n", " 'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (387,\n", " 'Pescador de Ilusões',\n", " 'Macelo Yuka/O Rappa',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (388,\n", " 'À Vontade (Live Mix)',\n", " 'Bombom/Ed Motta',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (389, 'Maria Fumaça', 'Luiz Carlos/Oberdan', 'Chill: Brazil (Disc 1)', 0.99),\n", " (390,\n", " 'Sambassim (dj patife remix)',\n", " 'Alba Carvalho/Fernando Porto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (391, 'Garota De Ipanema', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (392, 'Tim Tim Por Tim Tim', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (393, 'Tarde Em Itapoã', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (394, 'Tanto Tempo', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (395, 'Eu Vim Da Bahia - Live', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (396, 'Alô Alô Marciano', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (397, 'Linha Do Horizonte', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (398, 'Only A Dream In Rio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (399, 'Abrir A Porta', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (400, 'Alice', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (401, 'Momentos Que Marcam', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (402, 'Um Jantar Pra Dois', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (403, 'Bumbo Da Mangueira', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (404, 'Mr Funk Samba', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (405, 'Santo Antonio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (406, 'Por Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (407, 'Só Tinha De Ser Com Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (408,\n", " 'Free Speech For The Dumb',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (409, \"It's Electric\", 'Harris/Tatler', 'Garage Inc. (Disc 1)', 0.99),\n", " (410, 'Sabbra Cadabra', 'Black Sabbath', 'Garage Inc. (Disc 1)', 0.99),\n", " (411, 'Turn The Page', 'Seger', 'Garage Inc. (Disc 1)', 0.99),\n", " (412, 'Die Die My Darling', 'Danzig', 'Garage Inc. (Disc 1)', 0.99),\n", " (413, 'Loverman', 'Cave', 'Garage Inc. (Disc 1)', 0.99),\n", " (414, 'Mercyful Fate', 'Diamond/Shermann', 'Garage Inc. (Disc 1)', 0.99),\n", " (415,\n", " 'Astronomy',\n", " 'A.Bouchard/J.Bouchard/S.Pearlman',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (416, 'Whiskey In The Jar', 'Traditional', 'Garage Inc. (Disc 1)', 0.99),\n", " (417, \"Tuesday's Gone\", 'Collins/Van Zandt', 'Garage Inc. (Disc 1)', 0.99),\n", " (418,\n", " 'The More I See',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (419, 'A Kind Of Magic', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (420, 'Under Pressure', 'Queen & David Bowie', 'Greatest Hits II', 0.99),\n", " (421, 'Radio GA GA', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (422, 'I Want It All', 'Queen', 'Greatest Hits II', 0.99),\n", " (423, 'I Want To Break Free', 'John Deacon', 'Greatest Hits II', 0.99),\n", " (424, 'Innuendo', 'Queen', 'Greatest Hits II', 0.99),\n", " (425, \"It's A Hard Life\", 'Freddie Mercury', 'Greatest Hits II', 0.99),\n", " (426, 'Breakthru', 'Queen', 'Greatest Hits II', 0.99),\n", " (427, 'Who Wants To Live Forever', 'Brian May', 'Greatest Hits II', 0.99),\n", " (428, 'Headlong', 'Queen', 'Greatest Hits II', 0.99),\n", " (429, 'The Miracle', 'Queen', 'Greatest Hits II', 0.99),\n", " (430, \"I'm Going Slightly Mad\", 'Queen', 'Greatest Hits II', 0.99),\n", " (431, 'The Invisible Man', 'Queen', 'Greatest Hits II', 0.99),\n", " (432, 'Hammer To Fall', 'Brian May', 'Greatest Hits II', 0.99),\n", " (433,\n", " 'Friends Will Be Friends',\n", " 'Freddie Mercury & John Deacon',\n", " 'Greatest Hits II',\n", " 0.99),\n", " (434, 'The Show Must Go On', 'Queen', 'Greatest Hits II', 0.99),\n", " (435, 'One Vision', 'Queen', 'Greatest Hits II', 0.99),\n", " (436, 'Detroit Rock City', 'Paul Stanley, B. Ezrin', 'Greatest Kiss', 0.99),\n", " (437, 'Black Diamond', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (438, 'Hard Luck Woman', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (439,\n", " 'Sure Know Something',\n", " 'Paul Stanley, Vincent Poncia',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (440, 'Love Gun', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (441, 'Deuce', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (442, \"Goin' Blind\", 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (443, 'Shock Me', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (444,\n", " 'Do You Love Me',\n", " 'Paul Stanley, B. Ezrin, K. Fowley',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (445, 'She', 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (446,\n", " 'I Was Made For Loving You',\n", " 'Paul Stanley, Vincent Poncia, Desmond Child',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (447,\n", " 'Shout It Out Loud',\n", " 'Paul Stanley, Gene Simmons, B. Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (448, 'God Of Thunder', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (449, 'Calling Dr. Love', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (450, 'Beth', 'S. Penridge, Bob Ezrin, Peter Criss', 'Greatest Kiss', 0.99),\n", " (451, 'Strutter', 'Paul Stanley, Gene Simmons', 'Greatest Kiss', 0.99),\n", " (452,\n", " 'Rock And Roll All Nite',\n", " 'Paul Stanley, Gene Simmons',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (453, 'Cold Gin', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (454, 'Plaster Caster', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (455,\n", " \"God Gave Rock 'n' Roll To You\",\n", " 'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (456, 'Heart of the Night', None, 'Heart of the Night', 0.99),\n", " (457, 'De La Luz', None, 'Heart of the Night', 0.99),\n", " (458, 'Westwood Moon', None, 'Heart of the Night', 0.99),\n", " (459, 'Midnight', None, 'Heart of the Night', 0.99),\n", " (460, 'Playtime', None, 'Heart of the Night', 0.99),\n", " (461, 'Surrender', None, 'Heart of the Night', 0.99),\n", " (462, \"Valentino's\", None, 'Heart of the Night', 0.99),\n", " (463, 'Believe', None, 'Heart of the Night', 0.99),\n", " (464, 'As We Sleep', None, 'Heart of the Night', 0.99),\n", " (465, 'When Evening Falls', None, 'Heart of the Night', 0.99),\n", " (466, 'J Squared', None, 'Heart of the Night', 0.99),\n", " (467, 'Best Thing', None, 'Heart of the Night', 0.99),\n", " (468,\n", " 'Maria',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (469,\n", " 'Poprocks And Coke',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (470,\n", " 'Longview',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (471,\n", " 'Welcome To Paradise',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (472,\n", " 'Basket Case',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (473,\n", " 'When I Come Around',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (474,\n", " 'She',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (475,\n", " 'J.A.R. (Jason Andrew Relva)',\n", " 'Mike Dirnt -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (476,\n", " 'Geek Stink Breath',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (477,\n", " 'Brain Stew',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (478,\n", " 'Jaded',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (479,\n", " 'Walking Contradiction',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (480,\n", " 'Stuck With Me',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (481,\n", " \"Hitchin' A Ride\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (482,\n", " 'Good Riddance (Time Of Your Life)',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (483,\n", " 'Redundant',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (484,\n", " 'Nice Guys Finish Last',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (485,\n", " 'Minority',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (486,\n", " 'Warning',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (487,\n", " 'Waiting',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (488,\n", " \"Macy's Day Parade\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (489, 'Into The Light', 'David Coverdale', 'Into The Light', 0.99),\n", " (490, 'River Song', 'David Coverdale', 'Into The Light', 0.99),\n", " (491, 'She Give Me ...', 'David Coverdale', 'Into The Light', 0.99),\n", " (492, \"Don't You Cry\", 'David Coverdale', 'Into The Light', 0.99),\n", " (493, 'Love Is Blind', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (494, 'Slave', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (495,\n", " 'Cry For Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (496,\n", " 'Living On Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (497, 'Midnight Blue', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (498,\n", " 'Too Many Tears',\n", " 'Adrian Vanderberg/David Coverdale',\n", " 'Into The Light',\n", " 0.99),\n", " (499,\n", " \"Don't Lie To Me\",\n", " 'David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (500, 'Wherever You May Go', 'David Coverdale', 'Into The Light', 0.99),\n", " (501, 'Grito De Alerta', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (502,\n", " 'Não Dá Mais Pra Segurar (Explode Coração)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (503, 'Começaria Tudo Outra Vez', None, 'Meus Momentos', 0.99),\n", " (504, 'O Que É O Que É ?', None, 'Meus Momentos', 0.99),\n", " (505, 'Sangrando', 'Gonzaga Jr/Gonzaguinha', 'Meus Momentos', 0.99),\n", " (506, 'Diga Lá, Coração', None, 'Meus Momentos', 0.99),\n", " (507, 'Lindo Lago Do Amor', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (508, 'Eu Apenas Queria Que Voçê Soubesse', None, 'Meus Momentos', 0.99),\n", " (509, 'Com A Perna No Mundo', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (510, 'E Vamos À Luta', None, 'Meus Momentos', 0.99),\n", " (511,\n", " 'Um Homem Também Chora (Guerreiro Menino)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (512, 'Comportamento Geral', 'Gonzaga Jr', 'Meus Momentos', 0.99),\n", " (513, 'Ponto De Interrogação', None, 'Meus Momentos', 0.99),\n", " (514, 'Espere Por Mim, Morena', 'Gonzaguinha', 'Meus Momentos', 0.99),\n", " (515, 'Meia-Lua Inteira', None, 'Minha Historia', 0.99),\n", " (516, 'Voce e Linda', None, 'Minha Historia', 0.99),\n", " (517, 'Um Indio', None, 'Minha Historia', 0.99),\n", " (518, 'Podres Poderes', None, 'Minha Historia', 0.99),\n", " (519, 'Voce Nao Entende Nada - Cotidiano', None, 'Minha Historia', 0.99),\n", " (520, 'O Estrangeiro', None, 'Minha Historia', 0.99),\n", " (521, 'Menino Do Rio', None, 'Minha Historia', 0.99),\n", " (522, 'Qualquer Coisa', None, 'Minha Historia', 0.99),\n", " (523, 'Sampa', None, 'Minha Historia', 0.99),\n", " (524, 'Queixa', None, 'Minha Historia', 0.99),\n", " (525, 'O Leaozinho', None, 'Minha Historia', 0.99),\n", " (526, 'Fora Da Ordem', None, 'Minha Historia', 0.99),\n", " (527, 'Terra', None, 'Minha Historia', 0.99),\n", " (528, 'Alegria, Alegria', None, 'Minha Historia', 0.99),\n", " (529,\n", " 'Balada Do Louco',\n", " 'Arnaldo Baptista - Rita Lee',\n", " 'Minha História',\n", " 0.99),\n", " (530,\n", " 'Ando Meio Desligado',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (531, 'Top Top', 'Os Mutantes - Arnolpho Lima Filho', 'Minha História', 0.99),\n", " (532, 'Baby', 'Caetano Veloso', 'Minha História', 0.99),\n", " (533, 'A E O Z', 'Mutantes', 'Minha História', 0.99),\n", " (534,\n", " 'Panis Et Circenses',\n", " 'Caetano Veloso - Gilberto Gil',\n", " 'Minha História',\n", " 0.99),\n", " (535,\n", " 'Chão De Estrelas',\n", " 'Orestes Barbosa-Sílvio Caldas',\n", " 'Minha História',\n", " 0.99),\n", " (536,\n", " 'Vida De Cachorro',\n", " 'Rita Lee - Arnaldo Baptista - Sérgio Baptista',\n", " 'Minha História',\n", " 0.99),\n", " (537, 'Bat Macumba', 'Gilberto Gil - Caetano Veloso', 'Minha História', 0.99),\n", " (538, 'Desculpe Babe', 'Arnaldo Baptista - Rita Lee', 'Minha História', 0.99),\n", " (539,\n", " 'Rita Lee',\n", " 'Arnaldo Baptista/Rita Lee/Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (540,\n", " 'Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll',\n", " 'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho',\n", " 'Minha História',\n", " 0.99),\n", " (541,\n", " 'Banho De Lua',\n", " 'B. de Filippi - F. Migliaci - Versão: Fred Jorge',\n", " 'Minha História',\n", " 0.99),\n", " (542,\n", " 'Meu Refrigerador Não Funciona',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (543,\n", " 'Burn',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (544,\n", " 'Stormbringer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (545,\n", " 'Gypsy',\n", " 'Coverdale/Hughes/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (546,\n", " 'Lady Double Dealer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (547, 'Mistreated', 'Coverdale', 'MK III The Final Concerts [Disc 1]', 0.99),\n", " (548,\n", " 'Smoke On The Water',\n", " 'Gillan/Glover/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (549,\n", " 'You Fool No One',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (550,\n", " 'Custard Pie',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (551,\n", " 'The Rover',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (552,\n", " 'In My Time Of Dying',\n", " 'John Bonham/John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (553,\n", " 'Houses Of The Holy',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (554,\n", " 'Trampled Under Foot',\n", " 'John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (555, 'Kashmir', 'John Bonham', 'Physical Graffiti [Disc 1]', 0.99),\n", " (556,\n", " 'Imperatriz',\n", " 'Guga/Marquinho Lessa/Tuninho Professor',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (557, 'Beija-Flor', 'Caruso/Cleber/Deo/Osmar', 'Sambas De Enredo 2001', 0.99),\n", " (558,\n", " 'Viradouro',\n", " 'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (559,\n", " 'Mocidade',\n", " 'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (560,\n", " 'Unidos Da Tijuca',\n", " 'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (561,\n", " 'Salgueiro',\n", " 'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (562,\n", " 'Mangueira',\n", " \"Bizuca/Clóvis Pê/Gilson Bernini/Marelo D'Aguia\",\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (563,\n", " 'União Da Ilha',\n", " 'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (564,\n", " 'Grande Rio',\n", " 'Carlos Santos/Ciro/Claudio Russo/Zé Luiz',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (565,\n", " 'Portela',\n", " 'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (566,\n", " 'Caprichosos',\n", " 'Gule/Jorge 101/Lequinho/Luiz Piao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (567, 'Tradição', 'Adalto Magalha/Lourenco', 'Sambas De Enredo 2001', 0.99),\n", " (568,\n", " 'Império Serrano',\n", " 'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (569,\n", " 'Tuiuti',\n", " 'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (570, '(Da Le) Yaleo', 'Santana', 'Supernatural', 0.99),\n", " (571,\n", " 'Love Of My Life',\n", " 'Carlos Santana & Dave Matthews',\n", " 'Supernatural',\n", " 0.99),\n", " (572, 'Put Your Lights On', 'E. Shrody', 'Supernatural', 0.99),\n", " (573,\n", " 'Africa Bamba',\n", " 'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo',\n", " 'Supernatural',\n", " 0.99),\n", " (574, 'Smooth', 'M. Itaal Shur & Rob Thomas', 'Supernatural', 0.99),\n", " (575, 'Do You Like The Way', 'L. Hill', 'Supernatural', 0.99),\n", " (576,\n", " 'Maria Maria',\n", " 'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow',\n", " 'Supernatural',\n", " 0.99),\n", " (577, 'Migra', 'R. Taha, Carlos Santana & T. Lindsay', 'Supernatural', 0.99),\n", " (578, 'Corazon Espinado', 'F. Olivera', 'Supernatural', 0.99),\n", " (579,\n", " 'Wishing It Was',\n", " 'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita',\n", " 'Supernatural',\n", " 0.99),\n", " (580, 'El Farol', 'Carlos Santana & KC Porter', 'Supernatural', 0.99),\n", " (581, 'Primavera', 'KC Porter & JB Eckl', 'Supernatural', 0.99),\n", " (582, 'The Calling', 'Carlos Santana & C. Thompson', 'Supernatural', 0.99),\n", " (583, 'Solução', None, 'The Best of Ed Motta', 0.99),\n", " (584, 'Manuel', None, 'The Best of Ed Motta', 0.99),\n", " (585, 'Entre E Ouça', None, 'The Best of Ed Motta', 0.99),\n", " (586, 'Um Contrato Com Deus', None, 'The Best of Ed Motta', 0.99),\n", " (587, 'Um Jantar Pra Dois', None, 'The Best of Ed Motta', 0.99),\n", " (588, 'Vamos Dançar', None, 'The Best of Ed Motta', 0.99),\n", " (589, 'Um Love', None, 'The Best of Ed Motta', 0.99),\n", " (590, 'Seis Da Tarde', None, 'The Best of Ed Motta', 0.99),\n", " (591, 'Baixo Rio', None, 'The Best of Ed Motta', 0.99),\n", " (592, 'Sombras Do Meu Destino', None, 'The Best of Ed Motta', 0.99),\n", " (593, 'Do You Have Other Loves?', None, 'The Best of Ed Motta', 0.99),\n", " (594, 'Agora Que O Dia Acordou', None, 'The Best of Ed Motta', 0.99),\n", " (595, 'Já!!!', None, 'The Best of Ed Motta', 0.99),\n", " (596, 'A Rua', None, 'The Best of Ed Motta', 0.99),\n", " (597,\n", " \"Now's The Time\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (598, 'Jeru', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (599,\n", " 'Compulsion',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (600,\n", " 'Tempus Fugit',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (601, \"Walkin'\", 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (602,\n", " \"'Round Midnight\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (603,\n", " 'Bye Bye Blackbird',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (604,\n", " 'New Rhumba',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (605, 'Generique', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (606,\n", " 'Summertime',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (607, 'So What', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (608,\n", " 'The Pan Piper',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (609,\n", " 'Someday My Prince Will Come',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (610,\n", " 'My Funny Valentine (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (611, 'E.S.P.', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (612, 'Nefertiti', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (613,\n", " 'Petits Machins (Little Stuff)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (614,\n", " 'Miles Runs The Voodoo Down',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (615,\n", " 'Little Church (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (616,\n", " 'Black Satin',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (617,\n", " 'Jean Pierre (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (618,\n", " 'Time After Time',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (619, 'Portia', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (620,\n", " \"Space Truckin'\",\n", " 'Blackmore/Gillan/Glover/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (621,\n", " 'Going Down / Highway Star',\n", " 'Gillan/Glover/Lord/Nix - Blackmore/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (622,\n", " 'Mistreated (Alternate Version)',\n", " 'Blackmore/Coverdale',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (623,\n", " 'You Fool No One (Alternate Version)',\n", " 'Blackmore/Coverdale/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (624, 'Jeepers Creepers', None, \"Up An' Atom\", 0.99),\n", " (625, 'Blue Rythm Fantasy', None, \"Up An' Atom\", 0.99),\n", " (626, 'Drum Boogie', None, \"Up An' Atom\", 0.99),\n", " (627, 'Let Me Off Uptown', None, \"Up An' Atom\", 0.99),\n", " (628, 'Leave Us Leap', None, \"Up An' Atom\", 0.99),\n", " (629, 'Opus No.1', None, \"Up An' Atom\", 0.99),\n", " (630, 'Boogie Blues', None, \"Up An' Atom\", 0.99),\n", " (631, 'How High The Moon', None, \"Up An' Atom\", 0.99),\n", " (632, 'Disc Jockey Jump', None, \"Up An' Atom\", 0.99),\n", " (633, \"Up An' Atom\", None, \"Up An' Atom\", 0.99),\n", " (634, 'Bop Boogie', None, \"Up An' Atom\", 0.99),\n", " (635, 'Lemon Drop', None, \"Up An' Atom\", 0.99),\n", " (636, 'Coronation Drop', None, \"Up An' Atom\", 0.99),\n", " (637, 'Overtime', None, \"Up An' Atom\", 0.99),\n", " (638, 'Imagination', None, \"Up An' Atom\", 0.99),\n", " (639, \"Don't Take Your Love From Me\", None, \"Up An' Atom\", 0.99),\n", " (640, 'Midget', None, \"Up An' Atom\", 0.99),\n", " (641, \"I'm Coming Virginia\", None, \"Up An' Atom\", 0.99),\n", " (642, \"Payin' Them Dues Blues\", None, \"Up An' Atom\", 0.99),\n", " (643, 'Jungle Drums', None, \"Up An' Atom\", 0.99),\n", " (644, 'Showcase', None, \"Up An' Atom\", 0.99),\n", " (645, 'Swedish Schnapps', None, \"Up An' Atom\", 0.99),\n", " (646, 'Samba Da Bênção', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (647, 'Pot-Pourri N.º 4', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (648, 'Onde Anda Você', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (649, 'Samba Da Volta', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (650, 'Canto De Ossanha', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (651, 'Pot-Pourri N.º 5', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (652, 'Formosa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (653, 'Como É Duro Trabalhar', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (654, 'Minha Namorada', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (655, 'Por Que Será', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (656, 'Berimbau', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (657, 'Deixa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (658, 'Pot-Pourri N.º 2', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (659, 'Samba Em Prelúdio', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (660, 'Carta Ao Tom 74', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (661, 'Linha de Passe (João Bosco)', None, 'Vozes do MPB', 0.99),\n", " (662,\n", " 'Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)',\n", " None,\n", " 'Vozes do MPB',\n", " 0.99),\n", " (663, 'Chão de Giz (Elba Ramalho)', None, 'Vozes do MPB', 0.99),\n", " (664, 'Marina (Dorival Caymmi)', None, 'Vozes do MPB', 0.99),\n", " (665, 'Aquarela (Toquinho)', None, 'Vozes do MPB', 0.99),\n", " (666, 'Coração do Agreste (Fafá de Belém)', None, 'Vozes do MPB', 0.99),\n", " (667, 'Dona (Roupa Nova)', None, 'Vozes do MPB', 0.99),\n", " (668, 'Começaria Tudo Outra Vez (Maria Creuza)', None, 'Vozes do MPB', 0.99),\n", " (669, 'Caçador de Mim (Sá & Guarabyra)', None, 'Vozes do MPB', 0.99),\n", " (670, 'Romaria (Renato Teixeira)', None, 'Vozes do MPB', 0.99),\n", " (671, 'As Rosas Não Falam (Beth Carvalho)', None, 'Vozes do MPB', 0.99),\n", " (672, 'Wave (Os Cariocas)', None, 'Vozes do MPB', 0.99),\n", " (673, 'Garota de Ipanema (Dick Farney)', None, 'Vozes do MPB', 0.99),\n", " (674, 'Preciso Apender a Viver Só (Maysa)', None, 'Vozes do MPB', 0.99),\n", " (675, 'Susie Q', 'Hawkins-Lewis-Broadwater', 'Chronicle, Vol. 1', 0.99),\n", " (676, 'I Put A Spell On You', 'Jay Hawkins', 'Chronicle, Vol. 1', 0.99),\n", " (677, 'Proud Mary', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (678, 'Bad Moon Rising', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (679, 'Lodi', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (680, 'Green River', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (681, 'Commotion', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (682, 'Down On The Corner', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (683, 'Fortunate Son', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (684, \"Travelin' Band\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (685, \"Who'll Stop The Rain\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (686, 'Up Around The Bend', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (687, 'Run Through The Jungle', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (688, \"Lookin' Out My Back Door\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (689,\n", " 'Long As I Can See The Light',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (690,\n", " 'I Heard It Through The Grapevine',\n", " 'Whitfield-Strong',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (691,\n", " 'Have You Ever Seen The Rain?',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (692, 'Hey Tonight', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (693, 'Sweet Hitch-Hiker', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (694, 'Someday Never Comes', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (695, 'Walking On The Water', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (696, 'Suzie-Q, Pt. 2', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (697, 'Born On The Bayou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (698, 'Good Golly Miss Molly', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (699, 'Tombstone Shadow', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (700, 'Wrote A Song For Everyone', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (701,\n", " 'Night Time Is The Right Time',\n", " 'J.C. Fogerty',\n", " 'Chronicle, Vol. 2',\n", " 0.99),\n", " (702, 'Cotton Fields', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (703, 'It Came Out Of The Sky', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (704, \"Don't Look Now\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (705, 'The Midnight Special', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (706, 'Before You Accuse Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (707, 'My Baby Left Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (708, 'Pagan Baby', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (709, '(Wish I Could) Hideaway', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (710, \"It's Just A Thought\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (711, 'Molina', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (712, 'Born To Move', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (713, \"Lookin' For A Reason\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (714, 'Hello Mary Lou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (715,\n", " 'Gatas Extraordinárias',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (716, 'Brasil', None, 'Cássia Eller - Coleção Sem Limite [Disc 2]', 0.99),\n", " (717,\n", " 'Eu Sou Neguinha (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (718,\n", " 'Geração Coca-Cola (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (719,\n", " 'Lanterna Dos Afogados',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (720,\n", " 'Coroné Antonio Bento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (721,\n", " 'Você Passa, Eu Acho Graça (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (722,\n", " 'Meu Mundo Fica Completo (Com Você)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (723,\n", " '1° De Julho',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (724,\n", " 'Música Urbana 2',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (725,\n", " 'Vida Bandida (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (726,\n", " 'Palavras Ao Vento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (727,\n", " 'Não Sei O Que Eu Quero Da Vida',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (728,\n", " 'Woman Is The Nigger Of The World (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (729,\n", " 'Juventude Transviada (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (730, 'Malandragem', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (731, 'O Segundo Sol', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (732,\n", " 'Smells Like Teen Spirit (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (733, 'E.C.T.', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (734,\n", " 'Todo Amor Que Houver Nesta Vida',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (735, 'Metrô. Linha 743', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (736, 'Nós (Ao Vivo)', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (737,\n", " 'Na Cadência Do Samba',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (738,\n", " 'Admirável Gado Novo',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (739, 'Eleanor Rigby', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (740, 'Socorro', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (741, 'Blues Da Piedade', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (742, 'Rubens', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (743,\n", " 'Não Deixe O Samba Morrer - Cassia Eller e Alcione',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (744,\n", " 'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (745, \"Comin' Home\", 'Bolin/Coverdale/Paice', 'Come Taste The Band', 0.99),\n", " (746, 'Lady Luck', 'Cook/Coverdale', 'Come Taste The Band', 0.99),\n", " (747, \"Gettin' Tighter\", 'Bolin/Hughes', 'Come Taste The Band', 0.99),\n", " (748, 'Dealer', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (749, 'I Need Love', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (750, 'Drifter', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (751, 'Love Child', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (752,\n", " \"This Time Around / Owed to 'G' [Instrumental]\",\n", " 'Bolin/Hughes/Lord',\n", " 'Come Taste The Band',\n", " 0.99),\n", " (753, 'You Keep On Moving', 'Coverdale/Hughes', 'Come Taste The Band', 0.99),\n", " (754,\n", " 'Speed King',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (755,\n", " 'Bloodsucker',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (756,\n", " 'Child In Time',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (757,\n", " 'Flight Of The Rat',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (758,\n", " 'Into The Fire',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (759,\n", " 'Living Wreck',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (760,\n", " \"Hard Lovin' Man\",\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (761,\n", " 'Fireball',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (762,\n", " 'No No No',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (763,\n", " 'Strange Kind Of Woman',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (764,\n", " \"Anyone's Daughter\",\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (765,\n", " 'The Mule',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (766,\n", " 'Fools',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (767,\n", " 'No One Came',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (768,\n", " 'Knocking At Your Back Door',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (769,\n", " 'Bad Attitude',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (770,\n", " 'Child In Time (Son Of Aleric - Instrumental)',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (771,\n", " \"Nobody's Home\",\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (772,\n", " 'Black Night',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (773,\n", " 'Perfect Strangers',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (774,\n", " 'The Unwritten Law',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (775,\n", " 'Call Of The Wild',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (776,\n", " 'Hush',\n", " 'South',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (777,\n", " 'Smoke On The Water',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (778,\n", " 'Space Trucking',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (779,\n", " 'Highway Star',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (780,\n", " \"Maybe I'm A Leo\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (781,\n", " 'Pictures Of Home',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (782,\n", " 'Never Before',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (783,\n", " 'Smoke On The Water',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (784,\n", " 'Lazy',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (785,\n", " \"Space Truckin'\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (786,\n", " 'Vavoom : Ted The Mechanic',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (787,\n", " 'Loosen My Strings',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (788,\n", " 'Soon Forgotten',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (789,\n", " 'Sometimes I Feel Like Screaming',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (790,\n", " \"Cascades : I'm Not Your Lover\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (791,\n", " 'The Aviator',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (792,\n", " \"Rosa's Cantina\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (793,\n", " 'A Castle Full Of Rascals',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (794,\n", " 'A Touch Away',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (795,\n", " 'Hey Cisco',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (796,\n", " 'Somebody Stole My Guitar',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (797,\n", " 'The Purpendicular Waltz',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (798,\n", " 'King Of Dreams',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (799,\n", " 'The Cut Runs Deep',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (800,\n", " 'Fire In The Basement',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (801, 'Truth Hurts', 'Blackmore, Glover, Turner', 'Slaves And Masters', 0.99),\n", " (802,\n", " 'Breakfast In Bed',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (803,\n", " 'Love Conquers All',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (804,\n", " 'Fortuneteller',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (805,\n", " 'Too Much Is Not Enough',\n", " 'Turner, Held, Greenwood',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (806,\n", " 'Wicked Ways',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (807,\n", " 'Stormbringer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (808,\n", " \"Love Don't Mean a Thing\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (809,\n", " 'Holy Man',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (810,\n", " 'Hold On',\n", " 'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (811,\n", " 'Lady Double Dealer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (812,\n", " \"You Can't Do it Right (With the One You Love)\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (813,\n", " 'High Ball Shooter',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (814,\n", " 'The Gypsy',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (815,\n", " 'Soldier Of Fortune',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (816,\n", " 'The Battle Rages On',\n", " 'ian paice/jon lord',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (817, 'Lick It Up', 'roger glover', 'The Battle Rages On', 0.99),\n", " (818, 'Anya', 'jon lord/roger glover', 'The Battle Rages On', 0.99),\n", " (819, 'Talk About Love', 'roger glover', 'The Battle Rages On', 0.99),\n", " (820, 'Time To Kill', 'roger glover', 'The Battle Rages On', 0.99),\n", " (821, 'Ramshackle Man', 'roger glover', 'The Battle Rages On', 0.99),\n", " (822, 'A Twist In The Tail', 'roger glover', 'The Battle Rages On', 0.99),\n", " (823,\n", " 'Nasty Piece Of Work',\n", " 'jon lord/roger glover',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (824, 'Solitaire', 'roger glover', 'The Battle Rages On', 0.99),\n", " (825, \"One Man's Meat\", 'roger glover', 'The Battle Rages On', 0.99),\n", " (826,\n", " 'Pour Some Sugar On Me',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (827, 'Photograph', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (828, 'Love Bites', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (829, \"Let's Get Rocked\", None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (830,\n", " 'Two Steps Behind [Acoustic Version]',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (831, 'Animal', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (832, 'Heaven Is', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (833, 'Rocket', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (834,\n", " 'When Love & Hate Collide',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (835, 'Action', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (836,\n", " 'Make Love Like A Man',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (837, 'Armageddon It', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (838,\n", " 'Have You Ever Needed Someone So Bad',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (839, 'Rock Of Ages', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (840, 'Hysteria', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (841,\n", " \"Bringin' On The Heartbreak\",\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (842, 'Roll Call', 'Jim Beard', 'Outbreak', 0.99),\n", " (843,\n", " 'Otay',\n", " 'John Scofield, Robert Aries, Milton Chambers and Gary Grainger',\n", " 'Outbreak',\n", " 0.99),\n", " (844, 'Groovus Interruptus', 'Jim Beard', 'Outbreak', 0.99),\n", " (845, 'Paris On Mine', 'Jon Herington', 'Outbreak', 0.99),\n", " (846, 'In Time', 'Sylvester Stewart', 'Outbreak', 0.99),\n", " (847, 'Plan B', 'Dean Brown, Dennis Chambers & Jim Beard', 'Outbreak', 0.99),\n", " (848, 'Outbreak', 'Jim Beard & Jon Herington', 'Outbreak', 0.99),\n", " (849, 'Baltimore, DC', 'John Scofield', 'Outbreak', 0.99),\n", " (850,\n", " 'Talkin Loud and Saying Nothin',\n", " 'James Brown & Bobby Byrd',\n", " 'Outbreak',\n", " 0.99),\n", " (851, 'Pétala', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (852, 'Meu Bem-Querer', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (853, 'Cigano', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (854, 'Boa Noite', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (855, 'Fato Consumado', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (856, 'Faltando Um Pedaço', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (857, 'Álibi', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (858, 'Esquinas', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (859, 'Se...', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (860, 'Eu Te Devoro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (861, 'Lilás', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (862, 'Acelerou', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (863, 'Um Amor Puro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (864, 'Samurai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (865, 'Nem Um Dia', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (866, 'Oceano', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (867, 'Açai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (868, 'Serrado', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (869, 'Flor De Lis', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (870, 'Amar É Tudo', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (871, 'Azul', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (872, 'Seduzir', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (873,\n", " 'A Carta',\n", " 'Djavan - Gabriel, O Pensador',\n", " 'Djavan Ao Vivo - Vol. 1',\n", " 0.99),\n", " (874, 'Sina', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (875, 'Acelerou', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (876, 'Um Amor Puro', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (877, 'O Bêbado e a Equilibrista', None, 'Elis Regina-Minha História', 0.99),\n", " (878, 'O Mestre-Sala dos Mares', None, 'Elis Regina-Minha História', 0.99),\n", " (879, 'Atrás da Porta', None, 'Elis Regina-Minha História', 0.99),\n", " (880, 'Dois Pra Lá, Dois Pra Cá', None, 'Elis Regina-Minha História', 0.99),\n", " (881, 'Casa no Campo', None, 'Elis Regina-Minha História', 0.99),\n", " (882, 'Romaria', None, 'Elis Regina-Minha História', 0.99),\n", " (883, 'Alô, Alô, Marciano', None, 'Elis Regina-Minha História', 0.99),\n", " (884, 'Me Deixas Louca', None, 'Elis Regina-Minha História', 0.99),\n", " (885, 'Fascinação', None, 'Elis Regina-Minha História', 0.99),\n", " (886, 'Saudosa Maloca', None, 'Elis Regina-Minha História', 0.99),\n", " (887, 'As Aparências Enganam', None, 'Elis Regina-Minha História', 0.99),\n", " (888, 'Madalena', None, 'Elis Regina-Minha História', 0.99),\n", " (889, 'Maria Rosa', None, 'Elis Regina-Minha História', 0.99),\n", " (890, 'Aprendendo A Jogar', None, 'Elis Regina-Minha História', 0.99),\n", " (891, 'Layla', 'Clapton/Gordon', 'The Cream Of Clapton', 0.99),\n", " (892, 'Badge', 'Clapton/Harrison', 'The Cream Of Clapton', 0.99),\n", " (893, 'I Feel Free', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (894, 'Sunshine Of Your Love', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (895,\n", " 'Crossroads',\n", " 'Clapton/Robert Johnson Arr: Eric Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (896,\n", " 'Strange Brew',\n", " 'Clapton/Collins/Pappalardi',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (897, 'White Room', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (898, 'Bell Bottom Blues', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (899, 'Cocaine', 'Cale/Clapton', 'The Cream Of Clapton', 0.99),\n", " (900, 'I Shot The Sheriff', 'Marley', 'The Cream Of Clapton', 0.99),\n", " (901, 'After Midnight', 'Clapton/J. J. Cale', 'The Cream Of Clapton', 0.99),\n", " (902,\n", " 'Swing Low Sweet Chariot',\n", " 'Clapton/Trad. Arr. Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (903, 'Lay Down Sally', 'Clapton/Levy', 'The Cream Of Clapton', 0.99),\n", " (904,\n", " 'Knockin On Heavens Door',\n", " 'Clapton/Dylan',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (905, 'Wonderful Tonight', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (906, 'Let It Grow', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (907, 'Promises', 'Clapton/F.eldman/Linn', 'The Cream Of Clapton', 0.99),\n", " (908, \"I Can't Stand It\", 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (909, 'Signe', 'Eric Clapton', 'Unplugged', 0.99),\n", " (910, 'Before You Accuse Me', 'Eugene McDaniel', 'Unplugged', 0.99),\n", " (911, 'Hey Hey', 'Big Bill Broonzy', 'Unplugged', 0.99),\n", " (912, 'Tears In Heaven', 'Eric Clapton, Will Jennings', 'Unplugged', 0.99),\n", " (913, 'Lonely Stranger', 'Eric Clapton', 'Unplugged', 0.99),\n", " (914,\n", " \"Nobody Knows You When You're Down & Out\",\n", " 'Jimmy Cox',\n", " 'Unplugged',\n", " 0.99),\n", " (915, 'Layla', 'Eric Clapton, Jim Gordon', 'Unplugged', 0.99),\n", " (916, 'Running On Faith', 'Jerry Lynn Williams', 'Unplugged', 0.99),\n", " (917, \"Walkin' Blues\", 'Robert Johnson', 'Unplugged', 0.99),\n", " (918, 'Alberta', 'Traditional', 'Unplugged', 0.99),\n", " (919, 'San Francisco Bay Blues', 'Jesse Fuller', 'Unplugged', 0.99),\n", " (920, 'Malted Milk', 'Robert Johnson', 'Unplugged', 0.99),\n", " (921, 'Old Love', 'Eric Clapton, Robert Cray', 'Unplugged', 0.99),\n", " (922,\n", " \"Rollin' And Tumblin'\",\n", " 'McKinley Morgenfield (Muddy Waters)',\n", " 'Unplugged',\n", " 0.99),\n", " (923, 'Collision', 'Jon Hudson/Mike Patton', 'Album Of The Year', 0.99),\n", " (924,\n", " 'Stripsearch',\n", " 'Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (925,\n", " 'Last Cup Of Sorrow',\n", " 'Bill Gould/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (926,\n", " 'Naked In Front Of The Computer',\n", " 'Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (927,\n", " 'Helpless',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (928,\n", " 'Mouth To Mouth',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (929,\n", " 'Ashes To Ashes',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (930,\n", " 'She Loves Me Not',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (931, 'Got That Feeling', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (932,\n", " 'Paths Of Glory',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (933, 'Home Sick Home', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (934, 'Pristina', 'Bill Gould/Mike Patton', 'Album Of The Year', 0.99),\n", " (935, 'Land Of Sunshine', None, 'Angel Dust', 0.99),\n", " (936, 'Caffeine', None, 'Angel Dust', 0.99),\n", " (937, 'Midlife Crisis', None, 'Angel Dust', 0.99),\n", " (938, 'RV', None, 'Angel Dust', 0.99),\n", " (939, 'Smaller And Smaller', None, 'Angel Dust', 0.99),\n", " (940, \"Everything's Ruined\", None, 'Angel Dust', 0.99),\n", " (941, 'Malpractice', None, 'Angel Dust', 0.99),\n", " (942, 'Kindergarten', None, 'Angel Dust', 0.99),\n", " (943, 'Be Aggressive', None, 'Angel Dust', 0.99),\n", " (944, 'A Small Victory', None, 'Angel Dust', 0.99),\n", " (945, 'Crack Hitler', None, 'Angel Dust', 0.99),\n", " (946, 'Jizzlobber', None, 'Angel Dust', 0.99),\n", " (947, 'Midnight Cowboy', None, 'Angel Dust', 0.99),\n", " (948, 'Easy', None, 'Angel Dust', 0.99),\n", " (949,\n", " 'Get Out',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (950,\n", " 'Ricochet',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (951,\n", " 'Evidence',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (952,\n", " 'The Gentle Art Of Making Enemies',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (953,\n", " 'Star A.D.',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (954,\n", " 'Cuckoo For Caca',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (955,\n", " 'Caralho Voador',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (956,\n", " 'Ugly In The Morning',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (957,\n", " 'Digging The Grave',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (958,\n", " 'Take This Bottle',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (959,\n", " 'King For A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (960,\n", " 'What A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (961,\n", " 'The Last To Know',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (962,\n", " 'Just A Man',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (963,\n", " 'Absolute Zero',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (964, 'From Out Of Nowhere', 'Faith No More', 'The Real Thing', 0.99),\n", " (965, 'Epic', 'Faith No More', 'The Real Thing', 0.99),\n", " (966, 'Falling To Pieces', 'Faith No More', 'The Real Thing', 0.99),\n", " (967, \"Surprise! You're Dead!\", 'Faith No More', 'The Real Thing', 0.99),\n", " (968, 'Zombie Eaters', 'Faith No More', 'The Real Thing', 0.99),\n", " (969, 'The Real Thing', 'Faith No More', 'The Real Thing', 0.99),\n", " (970, 'Underwater Love', 'Faith No More', 'The Real Thing', 0.99),\n", " (971, 'The Morning After', 'Faith No More', 'The Real Thing', 0.99),\n", " (972, 'Woodpecker From Mars', 'Faith No More', 'The Real Thing', 0.99),\n", " (973,\n", " 'War Pigs',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'The Real Thing',\n", " 0.99),\n", " (974, 'Edge Of The World', 'Faith No More', 'The Real Thing', 0.99),\n", " (975, 'Deixa Entrar', None, 'Deixa Entrar', 0.99),\n", " (976, 'Falamansa Song', None, 'Deixa Entrar', 0.99),\n", " (977, 'Xote Dos Milagres', None, 'Deixa Entrar', 0.99),\n", " (978, 'Rindo À Toa', None, 'Deixa Entrar', 0.99),\n", " (979, 'Confidência', None, 'Deixa Entrar', 0.99),\n", " (980, 'Forró De Tóquio', None, 'Deixa Entrar', 0.99),\n", " (981, 'Zeca Violeiro', None, 'Deixa Entrar', 0.99),\n", " (982, 'Avisa', None, 'Deixa Entrar', 0.99),\n", " (983, 'Principiando/Decolagem', None, 'Deixa Entrar', 0.99),\n", " (984, 'Asas', None, 'Deixa Entrar', 0.99),\n", " (985, 'Medo De Escuro', None, 'Deixa Entrar', 0.99),\n", " (986, 'Oração', None, 'Deixa Entrar', 0.99),\n", " (987, 'Minha Gata', None, 'Deixa Entrar', 0.99),\n", " (988, 'Desaforo', None, 'Deixa Entrar', 0.99),\n", " (989,\n", " 'In Your Honor',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (990,\n", " 'No Way Back',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (991,\n", " 'Best Of You',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (992,\n", " 'DOA',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (993,\n", " 'Hell',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (994,\n", " 'The Last Song',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (995,\n", " 'Free Me',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (996,\n", " 'Resolve',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (997,\n", " 'The Deepest Blues Are Black',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (998,\n", " 'End Over End',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (999,\n", " 'Still',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 'In Your Honor [Disc 2]',\n", " 0.99),\n", " (1000,\n", " 'What If I Do?',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 'In Your Honor [Disc 2]',\n", " 0.99),\n", " ...]" ] }, "metadata": { "tags": [] }, "execution_count": 10 } ] }, { "cell_type": "markdown", "metadata": { "id": "yOxb69oCtaTu", "colab_type": "text" }, "source": [ "What would be the result of a Right Join?" ] }, { "cell_type": "markdown", "metadata": { "id": "2E4gnK2MtaTv", "colab_type": "text" }, "source": [ "## Grouping Operations" ] }, { "cell_type": "markdown", "metadata": { "id": "RCB4UWb9taTw", "colab_type": "text" }, "source": [ "Most of the time we want to calculate summary operations over the results of a query, which usually requires nesting subsequent joins. We can apply several summary operations, such as SUM, AVG, COUNT, etc.\n", "\n", "For this, we need the GROUP BY expression. It tells SQL to aggregate results, but only those grouped by one or more values. For example, let's count the number of songs per album, for those songs with an album present." ] }, { "cell_type": "code", "metadata": { "scrolled": true, "id": "SaUeTxhmtaTx", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 5930 }, "outputId": "121fd4aa-dfd0-46cb-a4b1-48f03b1b05e7" }, "source": [ "query = \"SELECT A.title, COUNT(T.unitprice) AS NrSongs FROM tracks as T INNER JOIN Albums as A \"\n", "query += \"ON T.AlbumID = A.AlbumID\"\n", "query += \" GROUP BY A.title\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 11, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[('...And Justice For All', 9),\n", " ('20th Century Masters - The Millennium Collection: The Best of Scorpions',\n", " 12),\n", " ('A Copland Celebration, Vol. I', 1),\n", " ('A Matter of Life and Death', 11),\n", " ('A Real Dead One', 12),\n", " ('A Real Live One', 11),\n", " ('A Soprano Inspired', 1),\n", " ('A TempestadeTempestade Ou O Livro Dos Dias', 15),\n", " ('A-Sides', 17),\n", " ('Ace Of Spades', 15),\n", " ('Achtung Baby', 12),\n", " ('Acústico', 22),\n", " ('Acústico MTV', 21),\n", " ('Acústico MTV [Live]', 17),\n", " ('Adams, John: The Chairman Dances', 1),\n", " ('Adorate Deum: Gregorian Chant from the Proper of the Mass', 1),\n", " ('Afrociberdelia', 23),\n", " ('Album Of The Year', 12),\n", " ('Alcohol Fueled Brewtality Live! [Disc 1]', 13),\n", " ('Alcohol Fueled Brewtality Live! [Disc 2]', 5),\n", " (\"All That You Can't Leave Behind\", 11),\n", " ('Allegri: Miserere', 1),\n", " ('American Idiot', 13),\n", " ('Angel Dust', 14),\n", " ('Ao Vivo [IMPORT]', 19),\n", " ('Appetite for Destruction', 12),\n", " ('Aquaman', 1),\n", " ('Are You Experienced?', 17),\n", " ('Armada: Music from the Courts of England and Spain', 1),\n", " ('Arquivo II', 12),\n", " ('Arquivo Os Paralamas Do Sucesso', 16),\n", " ('As Canções de Eu Tu Eles', 14),\n", " ('Audioslave', 14),\n", " ('Axé Bahia 2001', 14),\n", " ('B-Sides 1980-1990', 15),\n", " ('BBC Sessions [Disc 1] [Live]', 14),\n", " ('BBC Sessions [Disc 2] [Live]', 10),\n", " ('Bach: Goldberg Variations', 1),\n", " ('Bach: Orchestral Suites Nos. 1 - 4', 1),\n", " ('Bach: The Brandenburg Concertos', 1),\n", " ('Bach: The Cello Suites', 1),\n", " ('Bach: Toccata & Fugue in D Minor', 1),\n", " ('Bach: Violin Concertos', 1),\n", " ('Back to Black', 12),\n", " ('BackBeat Soundtrack', 12),\n", " ('Balls to the Wall', 1),\n", " ('Bark at the Moon (Remastered)', 1),\n", " ('Bartok: Violin & Viola Concertos', 1),\n", " ('Barulhinho Bom', 18),\n", " ('Battlestar Galactica (Classic), Season 1', 24),\n", " ('Battlestar Galactica, Season 3', 19),\n", " ('Battlestar Galactica: The Story So Far', 1),\n", " ('Beethoven Piano Sonatas: Moonlight & Pastorale', 1),\n", " ('Beethoven: Symhonies Nos. 5 & 6', 1),\n", " (\"Beethoven: Symphony No. 6 'Pastoral' Etc.\", 1),\n", " ('Berlioz: Symphonie Fantastique', 1),\n", " ('Beyond Good And Evil', 12),\n", " ('Big Ones', 15),\n", " ('Bizet: Carmen Highlights', 1),\n", " ('Black Album', 12),\n", " ('Black Sabbath', 7),\n", " ('Black Sabbath Vol. 4 (Remaster)', 10),\n", " ('Blizzard of Ozz', 2),\n", " ('Blood Sugar Sex Magik', 17),\n", " ('Blue Moods', 13),\n", " ('Body Count', 17),\n", " ('Bongo Fury', 9),\n", " ('Brave New World', 10),\n", " ('By The Way', 16),\n", " ('Cafezinho', 14),\n", " ('Cake: B-Sides and Rarities', 1),\n", " ('Californication', 15),\n", " ('Carmina Burana', 1),\n", " ('Carnaval 2001', 14),\n", " ('Carried to Dust (Bonus Track Version)', 1),\n", " ('Carry On', 14),\n", " ('Cesta Básica', 10),\n", " ('Charpentier: Divertissements, Airs & Concerts', 1),\n", " ('Chemical Wedding', 11),\n", " ('Chill: Brazil (Disc 1)', 17),\n", " ('Chill: Brazil (Disc 2)', 17),\n", " ('Chopin: Piano Concertos Nos. 1 & 2', 1),\n", " ('Chronicle, Vol. 1', 20),\n", " ('Chronicle, Vol. 2', 20),\n", " ('Cidade Negra - Hits', 14),\n", " ('Coda', 8),\n", " ('Come Taste The Band', 9),\n", " ('Compositores', 15),\n", " ('Contraband', 13),\n", " ('Core', 12),\n", " ('Cássia Eller - Coleção Sem Limite [Disc 2]', 15),\n", " ('Cássia Eller - Sem Limite [Disc 1]', 15),\n", " ('Da Lama Ao Caos', 13),\n", " ('Dance Of Death', 11),\n", " ('Dark Side Of The Moon', 9),\n", " ('Deep Purple In Rock', 7),\n", " ('Deixa Entrar', 14),\n", " ('Demorou...', 12),\n", " ('Diary of a Madman (Remastered)', 1),\n", " ('Diver Down', 12),\n", " ('Djavan Ao Vivo - Vol. 02', 13),\n", " ('Djavan Ao Vivo - Vol. 1', 13),\n", " ('Duos II', 1),\n", " ('Elgar: Cello Concerto & Vaughan Williams: Fantasias', 1),\n", " ('Elis Regina-Minha História', 14),\n", " ('Emergency On Planet Earth', 10),\n", " ('English Renaissance', 2),\n", " ('Every Kind of Light', 2),\n", " ('Faceless', 12),\n", " ('Facelift', 12),\n", " ('Fauré: Requiem, Ravel: Pavane & Others', 1),\n", " ('Fear Of The Dark', 12),\n", " ('Fireball', 7),\n", " ('For Those About To Rock We Salute You', 10),\n", " ('Frank', 11),\n", " ('From The Muddy Banks Of The Wishkah [Live]', 17),\n", " ('Garage Inc. (Disc 1)', 11),\n", " ('Garage Inc. (Disc 2)', 16),\n", " ('Get Born', 13),\n", " ('Great Opera Choruses', 1),\n", " (\"Great Performances - Barber's Adagio and Other Romantic Favorites for Strings\",\n", " 1),\n", " ('Great Recordings of the Century - Mahler: Das Lied von der Erde', 1),\n", " ('Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder', 1),\n", " (\"Great Recordings of the Century: Paganini's 24 Caprices\", 1),\n", " ('Greatest Hits', 57),\n", " ('Greatest Hits I', 17),\n", " ('Greatest Hits II', 17),\n", " ('Greatest Kiss', 20),\n", " ('Green', 11),\n", " ('Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande', 1),\n", " ('Górecki: Symphony No. 3', 1),\n", " ('Handel: Music for the Royal Fireworks (Original Version 1749)', 1),\n", " ('Handel: The Messiah (Highlights)', 1),\n", " ('Haydn: Symphonies 99 - 104', 1),\n", " ('Heart of the Night', 12),\n", " ('Heroes, Season 1', 23),\n", " ('Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 1),\n", " ('Hot Rocks, 1964-1971 (Disc 1)', 12),\n", " ('House of Pain', 19),\n", " ('Houses Of The Holy', 8),\n", " ('How To Dismantle An Atomic Bomb', 11),\n", " ('IV', 8),\n", " ('In Step', 10),\n", " ('In Through The Out Door', 7),\n", " ('In Your Honor [Disc 1]', 10),\n", " ('In Your Honor [Disc 2]', 10),\n", " ('Instant Karma: The Amnesty International Campaign to Save Darfur', 23),\n", " ('International Superhits', 21),\n", " ('Into The Light', 12),\n", " ('Iron Maiden', 9),\n", " ('J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro',\n", " 1),\n", " ('Jagged Little Pill', 13),\n", " ('Jorge Ben Jor 25 Anos', 14),\n", " ('Jota Quest-1995', 12),\n", " ('Judas 0: B-Sides and Rarities', 16),\n", " (\"Kill 'Em All\", 10),\n", " ('Killers', 10),\n", " ('King For A Day Fool For A Lifetime', 15),\n", " (\"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\", 11),\n", " ('Koyaanisqatsi (Soundtrack from the Motion Picture)', 1),\n", " ('LOST, Season 4', 17),\n", " ('Led Zeppelin I', 9),\n", " ('Led Zeppelin II', 9),\n", " ('Led Zeppelin III', 10),\n", " ('Let There Be Rock', 8),\n", " (\"Liszt - 12 Études D'Execution Transcendante\", 1),\n", " ('Live After Death', 18),\n", " ('Live At Donington 1992 (Disc 1)', 10),\n", " ('Live At Donington 1992 (Disc 2)', 10),\n", " ('Live On Two Legs [Live]', 16),\n", " ('Live [Disc 1]', 10),\n", " ('Live [Disc 2]', 9),\n", " ('Living After Midnight', 16),\n", " ('Load', 14),\n", " ('Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 1),\n", " ('Lost, Season 1', 25),\n", " ('Lost, Season 2', 24),\n", " ('Lost, Season 3', 26),\n", " ('Lulu Santos - RCA 100 Anos De Música - Álbum 01', 14),\n", " ('Lulu Santos - RCA 100 Anos De Música - Álbum 02', 14),\n", " ('MK III The Final Concerts [Disc 1]', 7),\n", " ('Machine Head', 7),\n", " ('Mais Do Mesmo', 16),\n", " ('Maquinarama', 12),\n", " ('Mascagni: Cavalleria Rusticana', 1),\n", " ('Master Of Puppets', 8),\n", " (\"Mendelssohn: A Midsummer Night's Dream\", 1),\n", " ('Meus Momentos', 14),\n", " ('Mezmerize', 11),\n", " ('Miles Ahead', 14),\n", " ('Milton Nascimento Ao Vivo', 13),\n", " ('Minas', 13),\n", " ('Minha Historia', 34),\n", " ('Minha História', 14),\n", " ('Misplaced Childhood', 10),\n", " (\"Monteverdi: L'Orfeo\", 1),\n", " ('Morning Dance', 9),\n", " ('Motley Crue Greatest Hits', 17),\n", " ('Mozart Gala: Famous Arias', 1),\n", " ('Mozart: Chamber Music', 1),\n", " ('Mozart: Symphonies Nos. 40 & 41', 1),\n", " ('Mozart: Wind Concertos', 1),\n", " ('Muso Ko', 2),\n", " ('My Generation - The Very Best Of The Who', 20),\n", " ('My Way: The Best Of Frank Sinatra [Disc 1]', 24),\n", " ('Na Pista', 10),\n", " ('Nevermind', 12),\n", " ('New Adventures In Hi-Fi', 14),\n", " ('News Of The World', 11),\n", " ('Nielsen: The Six Symphonies', 1),\n", " ('No More Tears (Remastered)', 2),\n", " ('No Prayer For The Dying', 10),\n", " ('No Security', 14),\n", " ('O Samba Poconé', 11),\n", " ('Olodum', 14),\n", " ('One By One', 11),\n", " ('Original Soundtracks 1', 14),\n", " ('Os Cães Ladram Mas A Caravana Não Pára', 16),\n", " ('Out Of Exile', 12),\n", " ('Out Of Time', 11),\n", " ('Outbreak', 9),\n", " ('Pachelbel: Canon & Gigue', 1),\n", " ('Palestrina: Missa Papae Marcelli & Allegri: Miserere', 1),\n", " (\"Pavarotti's Opera Made Easy\", 1),\n", " ('Pearl Jam', 13),\n", " ('Physical Graffiti [Disc 1]', 6),\n", " ('Physical Graffiti [Disc 2]', 9),\n", " ('Piece Of Mind', 9),\n", " ('Plays Metallica By Four Cellos', 8),\n", " ('Pop', 12),\n", " ('Powerslave', 8),\n", " ('Prenda Minha', 18),\n", " ('Presence', 7),\n", " ('Prokofiev: Romeo & Juliet', 1),\n", " ('Prokofiev: Symphony No.1', 1),\n", " ('Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 1),\n", " ('Puccini: Madama Butterfly - Highlights', 1),\n", " ('Purcell: Music for the Queen Mary', 1),\n", " ('Purcell: The Fairy Queen', 1),\n", " ('Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]',\n", " 18),\n", " ('Purpendicular', 12),\n", " ('Quanta Gente Veio Ver (Live)', 15),\n", " ('Quanta Gente Veio ver--Bônus De Carnaval', 3),\n", " ('Quiet Songs', 2),\n", " ('Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro', 17),\n", " ('Rattle And Hum', 17),\n", " ('Raul Seixas', 14),\n", " ('ReLoad', 13),\n", " ('Realize', 2),\n", " ('Respighi:Pines of Rome', 1),\n", " ('Restless and Wild', 3),\n", " ('Retrospective I (1974-1980)', 14),\n", " ('Revelations', 14),\n", " ('Ride The Lightning', 8),\n", " ('Riot Act', 15),\n", " ('Rock In Rio [CD1]', 10),\n", " ('Rock In Rio [CD2]', 9),\n", " ('Roda De Funk', 16),\n", " ('Rotten Apples: Greatest Hits', 18),\n", " ('SCRIABIN: Vers la flamme', 1),\n", " ('Sambas De Enredo 2001', 14),\n", " ('Santana - As Years Go By', 8),\n", " ('Santana Live', 6),\n", " ('Scheherazade', 1),\n", " (\"Schubert: The Late String Quartets & String Quintet (3 CD's)\", 1),\n", " ('Seek And Shall Find: More Of The Best (1963-1981)', 18),\n", " ('Serie Sem Limite (Disc 1)', 15),\n", " ('Serie Sem Limite (Disc 2)', 15),\n", " ('Seventh Son of a Seventh Son', 8),\n", " ('Sex Machine', 20),\n", " ('Sibelius: Finlandia', 1),\n", " ('Sir Neville Marriner: A Celebration', 1),\n", " ('Slaves And Masters', 9),\n", " ('Somewhere in Time', 8),\n", " ('South American Getaway', 1),\n", " ('Sozinho Remix Ao Vivo', 3),\n", " ('Speak of the Devil', 12),\n", " ('St. Anger', 11),\n", " ('Stormbringer', 9),\n", " ('Strauss: Waltzes', 1),\n", " ('Supernatural', 13),\n", " ('Surfing with the Alien (Remastered)', 10),\n", " ('Synkronized', 11),\n", " ('Szymanowski: Piano Works, Vol. 1', 1),\n", " ('Tangents', 15),\n", " (\"Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington's Victory\",\n", " 1),\n", " ('Tchaikovsky: The Nutcracker', 1),\n", " ('Temple of the Dog', 10),\n", " ('Ten', 11),\n", " ('The Battle Rages On', 10),\n", " ('The Beast Live', 10),\n", " ('The Best Of 1980-1990', 14),\n", " ('The Best Of Billy Cobham', 8),\n", " ('The Best Of Buddy Guy - The Millenium Collection', 11),\n", " ('The Best Of Men At Work', 10),\n", " ('The Best Of R.E.M.: The IRS Years', 16),\n", " ('The Best Of Van Halen, Vol. I', 17),\n", " ('The Best of Beethoven', 1),\n", " ('The Best of Ed Motta', 14),\n", " ('The Colour And The Shape', 13),\n", " ('The Cream Of Clapton', 18),\n", " ('The Doors', 11),\n", " ('The Essential Miles Davis [Disc 1]', 13),\n", " ('The Essential Miles Davis [Disc 2]', 10),\n", " ('The Final Concerts (Disc 2)', 4),\n", " ('The Last Night of the Proms', 1),\n", " ('The Number of The Beast', 8),\n", " ('The Office, Season 1', 6),\n", " ('The Office, Season 2', 22),\n", " ('The Office, Season 3', 25),\n", " ('The Police Greatest Hits', 14),\n", " ('The Real Thing', 11),\n", " ('The Return Of The Space Cowboy', 11),\n", " ('The Singles', 18),\n", " ('The Song Remains The Same (Disc 1)', 5),\n", " ('The Song Remains The Same (Disc 2)', 4),\n", " ('The Ultimate Relexation Album', 1),\n", " ('The World of Classical Favourites', 2),\n", " ('The X Factor', 11),\n", " ('Transmission', 11),\n", " ('Tribute', 14),\n", " ('UB40 The Best Of - Volume Two [UK]', 14),\n", " ('Un-Led-Ed', 1),\n", " ('Unplugged', 30),\n", " ('Unplugged [Live]', 15),\n", " (\"Up An' Atom\", 22),\n", " ('Use Your Illusion I', 16),\n", " ('Use Your Illusion II', 14),\n", " ('Van Halen', 11),\n", " ('Van Halen III', 12),\n", " (\"Vault: Def Leppard's Greatest Hits\", 16),\n", " ('Vinicius De Moraes', 15),\n", " ('Vinícius De Moraes - Sem Limite', 15),\n", " ('Virtual XI', 8),\n", " ('Vivaldi: The Four Seasons', 1),\n", " ('Volume Dois', 16),\n", " ('Voodoo Lounge', 15),\n", " ('Vozes do MPB', 14),\n", " ('Vs.', 12),\n", " ('Wagner: Favourite Overtures', 1),\n", " ('Walking Into Clarksdale', 12),\n", " ('War', 10),\n", " ('Warner 25 Anos', 14),\n", " ('Weill: The Seven Deadly Sins', 1),\n", " ('Worlds', 1),\n", " ('Zooropa', 10),\n", " ('[1997] Black Light Syndrome', 7)]" ] }, "metadata": { "tags": [] }, "execution_count": 11 } ] }, { "cell_type": "markdown", "metadata": { "id": "sKFgcaUAtaT0", "colab_type": "text" }, "source": [ "Let's do a more complex calculation. For example, let's get the total price per album. This requires first constructing a table with album, song name, and prices, such as the one we did before, and then grouping the results by album, adding the total price per song.\n", "\n", "For this, temporal tables can make our life easier, and more efficient. A temporal table is an intermediate table that will store results for a short period of time (usually a sequence of operations). The following code creates a temporary table called *AlbumSongs* that holds the output of the query we did before. We will use the *CREATE TABLE* expression, adding the *TEMPORARY* modifier that tells SQLite that the table should dissappear later.\n" ] }, { "cell_type": "code", "metadata": { "id": "5qOuFpphtaT0", "colab_type": "code", "colab": {} }, "source": [ "query = \"CREATE TEMPORARY TABLE AlbumSongs AS \"\n", "query += \"SELECT T.trackid, T.name, T.composer, A.title, T.unitprice FROM tracks as T LEFT JOIN Albums as A \"\n", "query += \"ON T.AlbumID = A.AlbumID\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "sA59bDRItaT3", "colab_type": "text" }, "source": [ "Now there is a table called AlbumSongs with the output of our query. This table will dissapear once we close our connection to the SQLite database (*conn.close()*)." ] }, { "cell_type": "code", "metadata": { "scrolled": true, "id": "rJYi5fErtaT3", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 43445 }, "outputId": "3c2918f6-77ae-4164-df34-03c566e3d62a" }, "source": [ "query = \"SELECT * FROM AlbumSongs\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 13, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[(1,\n", " 'For Those About To Rock (We Salute You)',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (2, 'Balls to the Wall', None, 'Balls to the Wall', 0.99),\n", " (3,\n", " 'Fast As a Shark',\n", " 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (4,\n", " 'Restless and Wild',\n", " 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman',\n", " 'Restless and Wild',\n", " 0.99),\n", " (5,\n", " 'Princess of the Dawn',\n", " 'Deaffy & R.A. Smith-Diesel',\n", " 'Restless and Wild',\n", " 0.99),\n", " (6,\n", " 'Put The Finger On You',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (7,\n", " \"Let's Get It Up\",\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (8,\n", " 'Inject The Venom',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (9,\n", " 'Snowballed',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (10,\n", " 'Evil Walks',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (11,\n", " 'C.O.D.',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (12,\n", " 'Breaking The Rules',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (13,\n", " 'Night Of The Long Knives',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (14,\n", " 'Spellbound',\n", " 'Angus Young, Malcolm Young, Brian Johnson',\n", " 'For Those About To Rock We Salute You',\n", " 0.99),\n", " (15, 'Go Down', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (16, 'Dog Eat Dog', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (17, 'Let There Be Rock', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (18, 'Bad Boy Boogie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (19, 'Problem Child', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (20, 'Overdose', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (21, \"Hell Ain't A Bad Place To Be\", 'AC/DC', 'Let There Be Rock', 0.99),\n", " (22, 'Whole Lotta Rosie', 'AC/DC', 'Let There Be Rock', 0.99),\n", " (23,\n", " 'Walk On Water',\n", " 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw',\n", " 'Big Ones',\n", " 0.99),\n", " (24, 'Love In An Elevator', 'Steven Tyler, Joe Perry', 'Big Ones', 0.99),\n", " (25,\n", " 'Rag Doll',\n", " 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight',\n", " 'Big Ones',\n", " 0.99),\n", " (26,\n", " 'What It Takes',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (27,\n", " 'Dude (Looks Like A Lady)',\n", " 'Steven Tyler, Joe Perry, Desmond Child',\n", " 'Big Ones',\n", " 0.99),\n", " (28, \"Janie's Got A Gun\", 'Steven Tyler, Tom Hamilton', 'Big Ones', 0.99),\n", " (29, \"Cryin'\", 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (30, 'Amazing', 'Steven Tyler, Richie Supa', 'Big Ones', 0.99),\n", " (31, 'Blind Man', 'Steven Tyler, Joe Perry, Taylor Rhodes', 'Big Ones', 0.99),\n", " (32, 'Deuces Are Wild', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (33, 'The Other Side', 'Steven Tyler, Jim Vallance', 'Big Ones', 0.99),\n", " (34, 'Crazy', 'Steven Tyler, Joe Perry, Desmond Child', 'Big Ones', 0.99),\n", " (35,\n", " 'Eat The Rich',\n", " 'Steven Tyler, Joe Perry, Jim Vallance',\n", " 'Big Ones',\n", " 0.99),\n", " (36, 'Angel', 'Steven Tyler, Desmond Child', 'Big Ones', 0.99),\n", " (37,\n", " \"Livin' On The Edge\",\n", " 'Steven Tyler, Joe Perry, Mark Hudson',\n", " 'Big Ones',\n", " 0.99),\n", " (38,\n", " 'All I Really Want',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (39,\n", " 'You Oughta Know',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (40,\n", " 'Perfect',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (41,\n", " 'Hand In My Pocket',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (42,\n", " 'Right Through You',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (43,\n", " 'Forgiven',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (44,\n", " 'You Learn',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (45,\n", " 'Head Over Feet',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (46,\n", " 'Mary Jane',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (47,\n", " 'Ironic',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (48,\n", " 'Not The Doctor',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (49,\n", " 'Wake Up',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (50,\n", " 'You Oughta Know (Alternate)',\n", " 'Alanis Morissette & Glenn Ballard',\n", " 'Jagged Little Pill',\n", " 0.99),\n", " (51, 'We Die Young', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (52, 'Man In The Box', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (53, 'Sea Of Sorrow', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (54, 'Bleed The Freak', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (55, \"I Can't Remember\", 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (56, 'Love, Hate, Love', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (57,\n", " \"It Ain't Like That\",\n", " 'Jerry Cantrell, Michael Starr, Sean Kinney',\n", " 'Facelift',\n", " 0.99),\n", " (58, 'Sunshine', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (59, 'Put You Down', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (60,\n", " 'Confusion',\n", " 'Jerry Cantrell, Michael Starr, Layne Staley',\n", " 'Facelift',\n", " 0.99),\n", " (61, 'I Know Somethin (Bout You)', 'Jerry Cantrell', 'Facelift', 0.99),\n", " (62, 'Real Thing', 'Jerry Cantrell, Layne Staley', 'Facelift', 0.99),\n", " (63, 'Desafinado', None, 'Warner 25 Anos', 0.99),\n", " (64, 'Garota De Ipanema', None, 'Warner 25 Anos', 0.99),\n", " (65, 'Samba De Uma Nota Só (One Note Samba)', None, 'Warner 25 Anos', 0.99),\n", " (66, 'Por Causa De Você', None, 'Warner 25 Anos', 0.99),\n", " (67, 'Ligia', None, 'Warner 25 Anos', 0.99),\n", " (68, 'Fotografia', None, 'Warner 25 Anos', 0.99),\n", " (69, 'Dindi (Dindi)', None, 'Warner 25 Anos', 0.99),\n", " (70,\n", " 'Se Todos Fossem Iguais A Você (Instrumental)',\n", " None,\n", " 'Warner 25 Anos',\n", " 0.99),\n", " (71, 'Falando De Amor', None, 'Warner 25 Anos', 0.99),\n", " (72, 'Angela', None, 'Warner 25 Anos', 0.99),\n", " (73, 'Corcovado (Quiet Nights Of Quiet Stars)', None, 'Warner 25 Anos', 0.99),\n", " (74, 'Outra Vez', None, 'Warner 25 Anos', 0.99),\n", " (75, 'O Boto (Bôto)', None, 'Warner 25 Anos', 0.99),\n", " (76, 'Canta, Canta Mais', None, 'Warner 25 Anos', 0.99),\n", " (77, 'Enter Sandman', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (78,\n", " 'Master Of Puppets',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (79,\n", " 'Harvester Of Sorrow',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (80,\n", " 'The Unforgiven',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (81, 'Sad But True', 'Apocalyptica', 'Plays Metallica By Four Cellos', 0.99),\n", " (82,\n", " 'Creeping Death',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (83,\n", " 'Wherever I May Roam',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (84,\n", " 'Welcome Home (Sanitarium)',\n", " 'Apocalyptica',\n", " 'Plays Metallica By Four Cellos',\n", " 0.99),\n", " (85, 'Cochise', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (86, 'Show Me How to Live', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (87, 'Gasoline', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (88, 'What You Are', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (89, 'Like a Stone', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (90, 'Set It Off', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (91, 'Shadow on the Sun', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (92, 'I am the Highway', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (93, 'Exploder', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (94, 'Hypnotize', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (95, \"Bring'em Back Alive\", 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (96, 'Light My Way', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (97, 'Getaway Car', 'Audioslave/Chris Cornell', 'Audioslave', 0.99),\n", " (98,\n", " 'The Last Remaining Light',\n", " 'Audioslave/Chris Cornell',\n", " 'Audioslave',\n", " 0.99),\n", " (99,\n", " 'Your Time Has Come',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (100,\n", " 'Out Of Exile',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (101,\n", " 'Be Yourself',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (102,\n", " \"Doesn't Remind Me\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (103,\n", " 'Drown Me Slowly',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (104,\n", " \"Heaven's Dead\",\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (105, 'The Worm', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (106,\n", " 'Man Or Animal',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (107,\n", " 'Yesterday To Tomorrow',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (108,\n", " 'Dandelion',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (109, '#1 Zero', 'Cornell, Commerford, Morello, Wilk', 'Out Of Exile', 0.99),\n", " (110,\n", " 'The Curse',\n", " 'Cornell, Commerford, Morello, Wilk',\n", " 'Out Of Exile',\n", " 0.99),\n", " (111,\n", " 'Money',\n", " 'Berry Gordy, Jr./Janie Bradford',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (112,\n", " 'Long Tall Sally',\n", " 'Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (113, 'Bad Boy', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (114,\n", " 'Twist And Shout',\n", " 'Bert Russell/Phil Medley',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (115,\n", " 'Please Mr. Postman',\n", " 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (116,\n", " \"C'Mon Everybody\",\n", " 'Eddie Cochran/Jerry Capehart',\n", " 'BackBeat Soundtrack',\n", " 0.99),\n", " (117, \"Rock 'N' Roll Music\", 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (118, 'Slow Down', 'Larry Williams', 'BackBeat Soundtrack', 0.99),\n", " (119, 'Roadrunner', 'Bo Diddley', 'BackBeat Soundtrack', 0.99),\n", " (120, 'Carol', 'Chuck Berry', 'BackBeat Soundtrack', 0.99),\n", " (121, 'Good Golly Miss Molly', 'Little Richard', 'BackBeat Soundtrack', 0.99),\n", " (122, '20 Flight Rock', 'Ned Fairchild', 'BackBeat Soundtrack', 0.99),\n", " (123, 'Quadrant', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (124,\n", " \"Snoopy's search-Red baron\",\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (125,\n", " 'Spanish moss-\"A sound portrait\"-Spanish moss',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (126, 'Moon germs', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (127, 'Stratus', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (128,\n", " 'The pleasant pheasant',\n", " 'Billy Cobham',\n", " 'The Best Of Billy Cobham',\n", " 0.99),\n", " (129, 'Solo-Panhandler', 'Billy Cobham', 'The Best Of Billy Cobham', 0.99),\n", " (130, 'Do what cha wanna', 'George Duke', 'The Best Of Billy Cobham', 0.99),\n", " (131,\n", " 'Intro/ Low Down',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (132,\n", " '13 Years Of Grief',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (133,\n", " 'Stronger Than Death',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (134, 'All For You', None, 'Alcohol Fueled Brewtality Live! [Disc 1]', 0.99),\n", " (135,\n", " 'Super Terrorizer',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (136,\n", " 'Phoney Smile Fake Hellos',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (137,\n", " 'Lost My Better Half',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (138,\n", " 'Bored To Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (139,\n", " 'A.N.D.R.O.T.A.Z.',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (140,\n", " 'Born To Booze',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (141,\n", " 'World Of Trouble',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (142,\n", " 'No More Tears',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (143,\n", " 'The Begining... At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 1]',\n", " 0.99),\n", " (144,\n", " 'Heart Of Gold',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (145, 'Snowblind', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (146, 'Like A Bird', None, 'Alcohol Fueled Brewtality Live! [Disc 2]', 0.99),\n", " (147,\n", " 'Blood In The Wall',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (148,\n", " 'The Beginning...At Last',\n", " None,\n", " 'Alcohol Fueled Brewtality Live! [Disc 2]',\n", " 0.99),\n", " (149, 'Black Sabbath', None, 'Black Sabbath', 0.99),\n", " (150, 'The Wizard', None, 'Black Sabbath', 0.99),\n", " (151, 'Behind The Wall Of Sleep', None, 'Black Sabbath', 0.99),\n", " (152, 'N.I.B.', None, 'Black Sabbath', 0.99),\n", " (153, 'Evil Woman', None, 'Black Sabbath', 0.99),\n", " (154, 'Sleeping Village', None, 'Black Sabbath', 0.99),\n", " (155, 'Warning', None, 'Black Sabbath', 0.99),\n", " (156,\n", " 'Wheels Of Confusion / The Straightener',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (157,\n", " \"Tomorrow's Dream\",\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (158,\n", " 'Changes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (159,\n", " 'FX',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (160,\n", " 'Supernaut',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (161,\n", " 'Snowblind',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (162,\n", " 'Cornucopia',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (163,\n", " 'Laguna Sunrise',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (164,\n", " 'St. Vitus Dance',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (165,\n", " 'Under The Sun/Every Day Comes and Goes',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'Black Sabbath Vol. 4 (Remaster)',\n", " 0.99),\n", " (166, 'Smoked Pork', None, 'Body Count', 0.99),\n", " (167, \"Body Count's In The House\", None, 'Body Count', 0.99),\n", " (168, 'Now Sports', None, 'Body Count', 0.99),\n", " (169, 'Body Count', None, 'Body Count', 0.99),\n", " (170, 'A Statistic', None, 'Body Count', 0.99),\n", " (171, 'Bowels Of The Devil', None, 'Body Count', 0.99),\n", " (172, 'The Real Problem', None, 'Body Count', 0.99),\n", " (173, 'KKK Bitch', None, 'Body Count', 0.99),\n", " (174, 'D Note', None, 'Body Count', 0.99),\n", " (175, 'Voodoo', None, 'Body Count', 0.99),\n", " (176, 'The Winner Loses', None, 'Body Count', 0.99),\n", " (177, 'There Goes The Neighborhood', None, 'Body Count', 0.99),\n", " (178, 'Oprah', None, 'Body Count', 0.99),\n", " (179, 'Evil Dick', None, 'Body Count', 0.99),\n", " (180, 'Body Count Anthem', None, 'Body Count', 0.99),\n", " (181, \"Momma's Gotta Die Tonight\", None, 'Body Count', 0.99),\n", " (182, 'Freedom Of Speech', None, 'Body Count', 0.99),\n", " (183, 'King In Crimson', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (184, 'Chemical Wedding', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (185, 'The Tower', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (186, 'Killing Floor', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (187, 'Book Of Thel', 'Eddie Casillas/Roy Z', 'Chemical Wedding', 0.99),\n", " (188, 'Gates Of Urizen', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (189, 'Jerusalem', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (190, 'Trupets Of Jericho', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (191, 'Machine Men', 'Adrian Smith', 'Chemical Wedding', 0.99),\n", " (192, 'The Alchemist', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (193, 'Realword', 'Roy Z', 'Chemical Wedding', 0.99),\n", " (194,\n", " 'First Time I Met The Blues',\n", " 'Eurreal Montgomery',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (195,\n", " 'Let Me Love You Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (196,\n", " 'Stone Crazy',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (197,\n", " 'Pretty Baby',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (198,\n", " 'When My Left Eye Jumps',\n", " 'Al Perkins/Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (199,\n", " 'Leave My Girl Alone',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (200,\n", " 'She Suits Me To A Tee',\n", " 'Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (201,\n", " 'Keep It To Myself (Aka Keep It To Yourself)',\n", " 'Sonny Boy Williamson [I]',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (202,\n", " 'My Time After Awhile',\n", " 'Robert Geddins/Ron Badger/Sheldon Feinberg',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (203,\n", " 'Too Many Ways (Alternate)',\n", " 'Willie Dixon',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (204,\n", " \"Talkin' 'Bout Women Obviously\",\n", " 'Amos Blakemore/Buddy Guy',\n", " 'The Best Of Buddy Guy - The Millenium Collection',\n", " 0.99),\n", " (205, 'Jorge Da Capadócia', 'Jorge Ben', 'Prenda Minha', 0.99),\n", " (206, 'Prenda Minha', 'Tradicional', 'Prenda Minha', 0.99),\n", " (207, 'Meditação', 'Tom Jobim - Newton Mendoça', 'Prenda Minha', 0.99),\n", " (208, 'Terra', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (209, 'Eclipse Oculto', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (210, 'Texto \"Verdade Tropical\"', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (211, 'Bem Devagar', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (212, 'Drão', 'Gilberto Gil', 'Prenda Minha', 0.99),\n", " (213, 'Saudosismo', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (214, 'Carolina', 'Chico Buarque', 'Prenda Minha', 0.99),\n", " (215, 'Sozinho', 'Peninha', 'Prenda Minha', 0.99),\n", " (216, 'Esse Cara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (217, 'Mel', 'Caetano Veloso - Waly Salomão', 'Prenda Minha', 0.99),\n", " (218, 'Linha Do Equador', 'Caetano Veloso - Djavan', 'Prenda Minha', 0.99),\n", " (219, 'Odara', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (220, 'A Luz De Tieta', 'Caetano Veloso', 'Prenda Minha', 0.99),\n", " (221,\n", " 'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu',\n", " 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto',\n", " 'Prenda Minha',\n", " 0.99),\n", " (222, 'Vida Boa', 'Fausto Nilo - Armandinho', 'Prenda Minha', 0.99),\n", " (223, 'Sozinho (Hitmakers Classic Mix)', None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (224,\n", " 'Sozinho (Hitmakers Classic Radio Edit)',\n", " None,\n", " 'Sozinho Remix Ao Vivo',\n", " 0.99),\n", " (225, \"Sozinho (Caêdrum 'n' Bass)\", None, 'Sozinho Remix Ao Vivo', 0.99),\n", " (226, 'Carolina', None, 'Minha Historia', 0.99),\n", " (227, 'Essa Moça Ta Diferente', None, 'Minha Historia', 0.99),\n", " (228, 'Vai Passar', None, 'Minha Historia', 0.99),\n", " (229, 'Samba De Orly', None, 'Minha Historia', 0.99),\n", " (230, 'Bye, Bye Brasil', None, 'Minha Historia', 0.99),\n", " (231, 'Atras Da Porta', None, 'Minha Historia', 0.99),\n", " (232, 'Tatuagem', None, 'Minha Historia', 0.99),\n", " (233, 'O Que Será (À Flor Da Terra)', None, 'Minha Historia', 0.99),\n", " (234, 'Morena De Angola', None, 'Minha Historia', 0.99),\n", " (235, 'Apesar De Você', None, 'Minha Historia', 0.99),\n", " (236, 'A Banda', None, 'Minha Historia', 0.99),\n", " (237, 'Minha Historia', None, 'Minha Historia', 0.99),\n", " (238, 'Com Açúcar E Com Afeto', None, 'Minha Historia', 0.99),\n", " (239, 'Brejo Da Cruz', None, 'Minha Historia', 0.99),\n", " (240, 'Meu Caro Amigo', None, 'Minha Historia', 0.99),\n", " (241, 'Geni E O Zepelim', None, 'Minha Historia', 0.99),\n", " (242, 'Trocando Em Miúdos', None, 'Minha Historia', 0.99),\n", " (243, 'Vai Trabalhar Vagabundo', None, 'Minha Historia', 0.99),\n", " (244, \"Gota D'água\", None, 'Minha Historia', 0.99),\n", " (245, 'Construção / Deus Lhe Pague', None, 'Minha Historia', 0.99),\n", " (246, 'Mateus Enter', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (247, 'O Cidadão Do Mundo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (248, 'Etnia', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (249,\n", " 'Quilombo Groove [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (250, 'Macô', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (251, 'Um Passeio No Mundo Livre', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (252, 'Samba Do Lado', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (253, 'Maracatu Atômico', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (254,\n", " 'O Encontro De Isaac Asimov Com Santos Dumont No Céu',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (255, 'Corpo De Lama', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (256, 'Sobremesa', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (257, 'Manguetown', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (258, 'Um Satélite Na Cabeça', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (259,\n", " 'Baião Ambiental [Instrumental]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (260, 'Sangue De Bairro', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (261, 'Enquanto O Mundo Explode', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (262, 'Interlude Zumbi', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (263, 'Criança De Domingo', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (264, 'Amor De Muito', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (265, 'Samidarish [Instrumental]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (266,\n", " 'Maracatu Atômico [Atomic Version]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (267,\n", " 'Maracatu Atômico [Ragga Mix]',\n", " 'Chico Science',\n", " 'Afrociberdelia',\n", " 0.99),\n", " (268, 'Maracatu Atômico [Trip Hop]', 'Chico Science', 'Afrociberdelia', 0.99),\n", " (269, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (270, 'Banditismo Por Uma Questa', None, 'Da Lama Ao Caos', 0.99),\n", " (271, 'Rios Pontes & Overdrives', None, 'Da Lama Ao Caos', 0.99),\n", " (272, 'Cidade', None, 'Da Lama Ao Caos', 0.99),\n", " (273, 'Praiera', None, 'Da Lama Ao Caos', 0.99),\n", " (274, 'Samba Makossa', None, 'Da Lama Ao Caos', 0.99),\n", " (275, 'Da Lama Ao Caos', None, 'Da Lama Ao Caos', 0.99),\n", " (276, 'Maracatu De Tiro Certeiro', None, 'Da Lama Ao Caos', 0.99),\n", " (277, 'Salustiano Song', None, 'Da Lama Ao Caos', 0.99),\n", " (278, 'Antene Se', None, 'Da Lama Ao Caos', 0.99),\n", " (279, 'Risoflora', None, 'Da Lama Ao Caos', 0.99),\n", " (280, 'Lixo Do Mangue', None, 'Da Lama Ao Caos', 0.99),\n", " (281, 'Computadores Fazem Arte', None, 'Da Lama Ao Caos', 0.99),\n", " (282,\n", " 'Girassol',\n", " 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (283,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (284, 'Johnny B. Goode', 'Chuck Berry', 'Acústico MTV [Live]', 0.99),\n", " (285, 'Soldado Da Paz', 'Herbert Vianna', 'Acústico MTV [Live]', 0.99),\n", " (286,\n", " 'Firmamento',\n", " 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (287, 'Extra', 'Gilberto Gil', 'Acústico MTV [Live]', 0.99),\n", " (288,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (289,\n", " 'Podes Crer',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (290,\n", " 'A Estrada',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (291, 'Berlim', 'Da Gama/Toni Garrido', 'Acústico MTV [Live]', 0.99),\n", " (292,\n", " 'Já Foi',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (293,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (294,\n", " 'Pensamento',\n", " 'Bino Farias/Da Gamma/Lazão/Rás Bernard',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (295,\n", " 'Conciliação',\n", " 'Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (296,\n", " 'Realidade Virtual',\n", " 'Bino Farias/Da Gama/Lazão/Toni Garrido',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (297,\n", " 'Mensagem',\n", " 'Bino Farias/Da Gama/Lazão/Rás Bernardo',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (298,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazão',\n", " 'Acústico MTV [Live]',\n", " 0.99),\n", " (299,\n", " 'Onde Você Mora?',\n", " 'Marisa Monte/Nando Reis',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (300,\n", " 'O Erê',\n", " 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (301,\n", " 'A Sombra Da Maldade',\n", " 'Da Gama/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (302, 'A Estrada', 'Da Gama/Lazao/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (303,\n", " 'Falar A Verdade',\n", " 'Bino/Da Gama/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (304,\n", " 'Firmamento',\n", " 'Harry Lawes/Winston Foster-Vers',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (305, 'Pensamento', 'Bino/Da Gama/Ras Bernardo', 'Cidade Negra - Hits', 0.99),\n", " (306,\n", " 'Realidade Virtual',\n", " 'Bino/Da Gamma/Lazao/Toni Garrido',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (307, 'Doutor', 'Bino/Da Gama/Toni Garrido', 'Cidade Negra - Hits', 0.99),\n", " (308,\n", " 'Na Frente Da TV',\n", " 'Bino/Da Gama/Lazao/Ras Bernardo',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (309, 'Downtown', 'Cidade Negra', 'Cidade Negra - Hits', 0.99),\n", " (310, 'Sábado A Noite', 'Lulu Santos', 'Cidade Negra - Hits', 0.99),\n", " (311,\n", " 'A Cor Do Sol',\n", " 'Bernardo Vilhena/Da Gama/Lazao',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (312,\n", " 'Eu Também Quero Beijar',\n", " 'Fausto Nilo/Moraes Moreira/Pepeu Gomes',\n", " 'Cidade Negra - Hits',\n", " 0.99),\n", " (313, 'Noite Do Prazer', None, 'Na Pista', 0.99),\n", " (314, 'À Francesa', None, 'Na Pista', 0.99),\n", " (315, 'Cada Um Cada Um (A Namoradeira)', None, 'Na Pista', 0.99),\n", " (316, 'Linha Do Equador', None, 'Na Pista', 0.99),\n", " (317, 'Amor Demais', None, 'Na Pista', 0.99),\n", " (318, 'Férias', None, 'Na Pista', 0.99),\n", " (319, 'Gostava Tanto De Você', None, 'Na Pista', 0.99),\n", " (320, 'Flor Do Futuro', None, 'Na Pista', 0.99),\n", " (321, 'Felicidade Urgente', None, 'Na Pista', 0.99),\n", " (322, 'Livre Pra Viver', None, 'Na Pista', 0.99),\n", " (323,\n", " 'Dig-Dig, Lambe-Lambe (Ao Vivo)',\n", " 'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (324,\n", " 'Pererê',\n", " 'Augusto Conceição/Chiclete Com Banana',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (325, 'TriboTchan', 'Cal Adan/Paulo Levi', 'Axé Bahia 2001', 0.99),\n", " (326,\n", " 'Tapa Aqui, Descobre Ali',\n", " 'Paulo Levi/W. Rangel',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (327, 'Daniela', 'Jorge Cardoso/Pierre Onasis', 'Axé Bahia 2001', 0.99),\n", " (328,\n", " 'Bate Lata',\n", " 'Fábio Nolasco/Gal Sales/Ivan Brasil',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (329,\n", " 'Garotas do Brasil',\n", " 'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (330,\n", " 'Levada do Amor (Ailoviu)',\n", " 'Luiz Wanderley/Paulo Levi',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (331,\n", " 'Lavadeira',\n", " 'Do Vale, Valverde/Gal Oliveira/Luciano Pinto',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (332,\n", " 'Reboladeira',\n", " 'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (333,\n", " 'É que Nessa Encarnação Eu Nasci Manga',\n", " 'Lucina/Luli',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (334,\n", " 'Reggae Tchan',\n", " 'Cal Adan/Del Rey, Tension/Edu Casanova',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (335, 'My Love', 'Jauperi/Zeu Góes', 'Axé Bahia 2001', 0.99),\n", " (336,\n", " 'Latinha de Cerveja',\n", " 'Adriano Bernandes/Edmar Neves',\n", " 'Axé Bahia 2001',\n", " 0.99),\n", " (337,\n", " 'You Shook Me',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (338,\n", " \"I Can't Quit You Baby\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (339,\n", " 'Communication Breakdown',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (340,\n", " 'Dazed and Confused',\n", " 'Jimmy Page',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (341,\n", " 'The Girl I Love She Got Long Black Wavy Hair',\n", " 'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (342,\n", " 'What is and Should Never Be',\n", " 'Jimmy Page/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (343,\n", " 'Communication Breakdown(2)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (344,\n", " 'Travelling Riverside Blues',\n", " 'Jimmy Page/Robert Johnson/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (345,\n", " 'Whole Lotta Love',\n", " 'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (346,\n", " \"Somethin' Else\",\n", " 'Bob Cochran/Sharon Sheeley',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (347,\n", " 'Communication Breakdown(3)',\n", " 'Jimmy Page/John Bonham/John Paul Jones',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (348,\n", " \"I Can't Quit You Baby(2)\",\n", " 'Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (349,\n", " 'You Shook Me(2)',\n", " 'J B Lenoir/Willie Dixon',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (350,\n", " 'How Many More Times',\n", " 'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant',\n", " 'BBC Sessions [Disc 1] [Live]',\n", " 0.99),\n", " (351, 'Debra Kadabra', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (352, 'Carolina Hard-Core Ecstasy', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (353,\n", " 'Sam With The Showing Scalp Flat Top',\n", " 'Don Van Vliet',\n", " 'Bongo Fury',\n", " 0.99),\n", " (354,\n", " \"Poofter's Froth Wyoming Plans Ahead\",\n", " 'Frank Zappa',\n", " 'Bongo Fury',\n", " 0.99),\n", " (355, '200 Years Old', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (356, 'Cucamonga', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (357, 'Advance Romance', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (358, 'Man With The Woman Head', 'Don Van Vliet', 'Bongo Fury', 0.99),\n", " (359, 'Muffin Man', 'Frank Zappa', 'Bongo Fury', 0.99),\n", " (360, 'Vai-Vai 2001', None, 'Carnaval 2001', 0.99),\n", " (361, 'X-9 2001', None, 'Carnaval 2001', 0.99),\n", " (362, 'Gavioes 2001', None, 'Carnaval 2001', 0.99),\n", " (363, 'Nene 2001', None, 'Carnaval 2001', 0.99),\n", " (364, 'Rosas De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (365, 'Mocidade Alegre 2001', None, 'Carnaval 2001', 0.99),\n", " (366, 'Camisa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (367, 'Leandro De Itaquera 2001', None, 'Carnaval 2001', 0.99),\n", " (368, 'Tucuruvi 2001', None, 'Carnaval 2001', 0.99),\n", " (369, 'Aguia De Ouro 2001', None, 'Carnaval 2001', 0.99),\n", " (370, 'Ipiranga 2001', None, 'Carnaval 2001', 0.99),\n", " (371, 'Morro Da Casa Verde 2001', None, 'Carnaval 2001', 0.99),\n", " (372, 'Perola Negra 2001', None, 'Carnaval 2001', 0.99),\n", " (373, 'Sao Lucas 2001', None, 'Carnaval 2001', 0.99),\n", " (374, 'Guanabara', 'Marcos Valle', 'Chill: Brazil (Disc 1)', 0.99),\n", " (375, 'Mas Que Nada', 'Jorge Ben', 'Chill: Brazil (Disc 1)', 0.99),\n", " (376,\n", " 'Vôo Sobre o Horizonte',\n", " 'J.r.Bertami/Parana',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (377, 'A Paz', 'Donato/Gilberto Gil', 'Chill: Brazil (Disc 1)', 0.99),\n", " (378,\n", " 'Wave (Vou te Contar)',\n", " 'Antonio Carlos Jobim',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (379,\n", " 'Água de Beber',\n", " 'Antonio Carlos Jobim/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (380,\n", " 'Samba da Bençaco',\n", " 'Baden Powell/Vinicius de Moraes',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (381,\n", " 'Pode Parar',\n", " 'Jorge Vercilo/Jota Maranhao',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (382, 'Menino do Rio', 'Caetano Veloso', 'Chill: Brazil (Disc 1)', 0.99),\n", " (383,\n", " 'Ando Meio Desligado',\n", " 'Caetano Veloso',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (384,\n", " 'Mistério da Raça',\n", " 'Luiz Melodia/Ricardo Augusto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (385, 'All Star', 'Nando Reis', 'Chill: Brazil (Disc 1)', 0.99),\n", " (386,\n", " 'Menina Bonita',\n", " 'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (387,\n", " 'Pescador de Ilusões',\n", " 'Macelo Yuka/O Rappa',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (388,\n", " 'À Vontade (Live Mix)',\n", " 'Bombom/Ed Motta',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (389, 'Maria Fumaça', 'Luiz Carlos/Oberdan', 'Chill: Brazil (Disc 1)', 0.99),\n", " (390,\n", " 'Sambassim (dj patife remix)',\n", " 'Alba Carvalho/Fernando Porto',\n", " 'Chill: Brazil (Disc 1)',\n", " 0.99),\n", " (391, 'Garota De Ipanema', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (392, 'Tim Tim Por Tim Tim', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (393, 'Tarde Em Itapoã', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (394, 'Tanto Tempo', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (395, 'Eu Vim Da Bahia - Live', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (396, 'Alô Alô Marciano', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (397, 'Linha Do Horizonte', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (398, 'Only A Dream In Rio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (399, 'Abrir A Porta', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (400, 'Alice', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (401, 'Momentos Que Marcam', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (402, 'Um Jantar Pra Dois', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (403, 'Bumbo Da Mangueira', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (404, 'Mr Funk Samba', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (405, 'Santo Antonio', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (406, 'Por Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (407, 'Só Tinha De Ser Com Você', 'Vários', 'Chill: Brazil (Disc 2)', 0.99),\n", " (408,\n", " 'Free Speech For The Dumb',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (409, \"It's Electric\", 'Harris/Tatler', 'Garage Inc. (Disc 1)', 0.99),\n", " (410, 'Sabbra Cadabra', 'Black Sabbath', 'Garage Inc. (Disc 1)', 0.99),\n", " (411, 'Turn The Page', 'Seger', 'Garage Inc. (Disc 1)', 0.99),\n", " (412, 'Die Die My Darling', 'Danzig', 'Garage Inc. (Disc 1)', 0.99),\n", " (413, 'Loverman', 'Cave', 'Garage Inc. (Disc 1)', 0.99),\n", " (414, 'Mercyful Fate', 'Diamond/Shermann', 'Garage Inc. (Disc 1)', 0.99),\n", " (415,\n", " 'Astronomy',\n", " 'A.Bouchard/J.Bouchard/S.Pearlman',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (416, 'Whiskey In The Jar', 'Traditional', 'Garage Inc. (Disc 1)', 0.99),\n", " (417, \"Tuesday's Gone\", 'Collins/Van Zandt', 'Garage Inc. (Disc 1)', 0.99),\n", " (418,\n", " 'The More I See',\n", " 'Molaney/Morris/Roberts/Wainwright',\n", " 'Garage Inc. (Disc 1)',\n", " 0.99),\n", " (419, 'A Kind Of Magic', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (420, 'Under Pressure', 'Queen & David Bowie', 'Greatest Hits II', 0.99),\n", " (421, 'Radio GA GA', 'Roger Taylor', 'Greatest Hits II', 0.99),\n", " (422, 'I Want It All', 'Queen', 'Greatest Hits II', 0.99),\n", " (423, 'I Want To Break Free', 'John Deacon', 'Greatest Hits II', 0.99),\n", " (424, 'Innuendo', 'Queen', 'Greatest Hits II', 0.99),\n", " (425, \"It's A Hard Life\", 'Freddie Mercury', 'Greatest Hits II', 0.99),\n", " (426, 'Breakthru', 'Queen', 'Greatest Hits II', 0.99),\n", " (427, 'Who Wants To Live Forever', 'Brian May', 'Greatest Hits II', 0.99),\n", " (428, 'Headlong', 'Queen', 'Greatest Hits II', 0.99),\n", " (429, 'The Miracle', 'Queen', 'Greatest Hits II', 0.99),\n", " (430, \"I'm Going Slightly Mad\", 'Queen', 'Greatest Hits II', 0.99),\n", " (431, 'The Invisible Man', 'Queen', 'Greatest Hits II', 0.99),\n", " (432, 'Hammer To Fall', 'Brian May', 'Greatest Hits II', 0.99),\n", " (433,\n", " 'Friends Will Be Friends',\n", " 'Freddie Mercury & John Deacon',\n", " 'Greatest Hits II',\n", " 0.99),\n", " (434, 'The Show Must Go On', 'Queen', 'Greatest Hits II', 0.99),\n", " (435, 'One Vision', 'Queen', 'Greatest Hits II', 0.99),\n", " (436, 'Detroit Rock City', 'Paul Stanley, B. Ezrin', 'Greatest Kiss', 0.99),\n", " (437, 'Black Diamond', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (438, 'Hard Luck Woman', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (439,\n", " 'Sure Know Something',\n", " 'Paul Stanley, Vincent Poncia',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (440, 'Love Gun', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (441, 'Deuce', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (442, \"Goin' Blind\", 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (443, 'Shock Me', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (444,\n", " 'Do You Love Me',\n", " 'Paul Stanley, B. Ezrin, K. Fowley',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (445, 'She', 'Gene Simmons, S. Coronel', 'Greatest Kiss', 0.99),\n", " (446,\n", " 'I Was Made For Loving You',\n", " 'Paul Stanley, Vincent Poncia, Desmond Child',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (447,\n", " 'Shout It Out Loud',\n", " 'Paul Stanley, Gene Simmons, B. Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (448, 'God Of Thunder', 'Paul Stanley', 'Greatest Kiss', 0.99),\n", " (449, 'Calling Dr. Love', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (450, 'Beth', 'S. Penridge, Bob Ezrin, Peter Criss', 'Greatest Kiss', 0.99),\n", " (451, 'Strutter', 'Paul Stanley, Gene Simmons', 'Greatest Kiss', 0.99),\n", " (452,\n", " 'Rock And Roll All Nite',\n", " 'Paul Stanley, Gene Simmons',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (453, 'Cold Gin', 'Ace Frehley', 'Greatest Kiss', 0.99),\n", " (454, 'Plaster Caster', 'Gene Simmons', 'Greatest Kiss', 0.99),\n", " (455,\n", " \"God Gave Rock 'n' Roll To You\",\n", " 'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin',\n", " 'Greatest Kiss',\n", " 0.99),\n", " (456, 'Heart of the Night', None, 'Heart of the Night', 0.99),\n", " (457, 'De La Luz', None, 'Heart of the Night', 0.99),\n", " (458, 'Westwood Moon', None, 'Heart of the Night', 0.99),\n", " (459, 'Midnight', None, 'Heart of the Night', 0.99),\n", " (460, 'Playtime', None, 'Heart of the Night', 0.99),\n", " (461, 'Surrender', None, 'Heart of the Night', 0.99),\n", " (462, \"Valentino's\", None, 'Heart of the Night', 0.99),\n", " (463, 'Believe', None, 'Heart of the Night', 0.99),\n", " (464, 'As We Sleep', None, 'Heart of the Night', 0.99),\n", " (465, 'When Evening Falls', None, 'Heart of the Night', 0.99),\n", " (466, 'J Squared', None, 'Heart of the Night', 0.99),\n", " (467, 'Best Thing', None, 'Heart of the Night', 0.99),\n", " (468,\n", " 'Maria',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (469,\n", " 'Poprocks And Coke',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (470,\n", " 'Longview',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (471,\n", " 'Welcome To Paradise',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (472,\n", " 'Basket Case',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (473,\n", " 'When I Come Around',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (474,\n", " 'She',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (475,\n", " 'J.A.R. (Jason Andrew Relva)',\n", " 'Mike Dirnt -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (476,\n", " 'Geek Stink Breath',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (477,\n", " 'Brain Stew',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (478,\n", " 'Jaded',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (479,\n", " 'Walking Contradiction',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (480,\n", " 'Stuck With Me',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (481,\n", " \"Hitchin' A Ride\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (482,\n", " 'Good Riddance (Time Of Your Life)',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (483,\n", " 'Redundant',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (484,\n", " 'Nice Guys Finish Last',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (485,\n", " 'Minority',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (486,\n", " 'Warning',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (487,\n", " 'Waiting',\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (488,\n", " \"Macy's Day Parade\",\n", " 'Billie Joe Armstrong -Words Green Day -Music',\n", " 'International Superhits',\n", " 0.99),\n", " (489, 'Into The Light', 'David Coverdale', 'Into The Light', 0.99),\n", " (490, 'River Song', 'David Coverdale', 'Into The Light', 0.99),\n", " (491, 'She Give Me ...', 'David Coverdale', 'Into The Light', 0.99),\n", " (492, \"Don't You Cry\", 'David Coverdale', 'Into The Light', 0.99),\n", " (493, 'Love Is Blind', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (494, 'Slave', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (495,\n", " 'Cry For Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (496,\n", " 'Living On Love',\n", " 'Bossi/David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (497, 'Midnight Blue', 'David Coverdale/Earl Slick', 'Into The Light', 0.99),\n", " (498,\n", " 'Too Many Tears',\n", " 'Adrian Vanderberg/David Coverdale',\n", " 'Into The Light',\n", " 0.99),\n", " (499,\n", " \"Don't Lie To Me\",\n", " 'David Coverdale/Earl Slick',\n", " 'Into The Light',\n", " 0.99),\n", " (500, 'Wherever You May Go', 'David Coverdale', 'Into The Light', 0.99),\n", " (501, 'Grito De Alerta', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (502,\n", " 'Não Dá Mais Pra Segurar (Explode Coração)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (503, 'Começaria Tudo Outra Vez', None, 'Meus Momentos', 0.99),\n", " (504, 'O Que É O Que É ?', None, 'Meus Momentos', 0.99),\n", " (505, 'Sangrando', 'Gonzaga Jr/Gonzaguinha', 'Meus Momentos', 0.99),\n", " (506, 'Diga Lá, Coração', None, 'Meus Momentos', 0.99),\n", " (507, 'Lindo Lago Do Amor', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (508, 'Eu Apenas Queria Que Voçê Soubesse', None, 'Meus Momentos', 0.99),\n", " (509, 'Com A Perna No Mundo', 'Gonzaga Jr.', 'Meus Momentos', 0.99),\n", " (510, 'E Vamos À Luta', None, 'Meus Momentos', 0.99),\n", " (511,\n", " 'Um Homem Também Chora (Guerreiro Menino)',\n", " None,\n", " 'Meus Momentos',\n", " 0.99),\n", " (512, 'Comportamento Geral', 'Gonzaga Jr', 'Meus Momentos', 0.99),\n", " (513, 'Ponto De Interrogação', None, 'Meus Momentos', 0.99),\n", " (514, 'Espere Por Mim, Morena', 'Gonzaguinha', 'Meus Momentos', 0.99),\n", " (515, 'Meia-Lua Inteira', None, 'Minha Historia', 0.99),\n", " (516, 'Voce e Linda', None, 'Minha Historia', 0.99),\n", " (517, 'Um Indio', None, 'Minha Historia', 0.99),\n", " (518, 'Podres Poderes', None, 'Minha Historia', 0.99),\n", " (519, 'Voce Nao Entende Nada - Cotidiano', None, 'Minha Historia', 0.99),\n", " (520, 'O Estrangeiro', None, 'Minha Historia', 0.99),\n", " (521, 'Menino Do Rio', None, 'Minha Historia', 0.99),\n", " (522, 'Qualquer Coisa', None, 'Minha Historia', 0.99),\n", " (523, 'Sampa', None, 'Minha Historia', 0.99),\n", " (524, 'Queixa', None, 'Minha Historia', 0.99),\n", " (525, 'O Leaozinho', None, 'Minha Historia', 0.99),\n", " (526, 'Fora Da Ordem', None, 'Minha Historia', 0.99),\n", " (527, 'Terra', None, 'Minha Historia', 0.99),\n", " (528, 'Alegria, Alegria', None, 'Minha Historia', 0.99),\n", " (529,\n", " 'Balada Do Louco',\n", " 'Arnaldo Baptista - Rita Lee',\n", " 'Minha História',\n", " 0.99),\n", " (530,\n", " 'Ando Meio Desligado',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (531, 'Top Top', 'Os Mutantes - Arnolpho Lima Filho', 'Minha História', 0.99),\n", " (532, 'Baby', 'Caetano Veloso', 'Minha História', 0.99),\n", " (533, 'A E O Z', 'Mutantes', 'Minha História', 0.99),\n", " (534,\n", " 'Panis Et Circenses',\n", " 'Caetano Veloso - Gilberto Gil',\n", " 'Minha História',\n", " 0.99),\n", " (535,\n", " 'Chão De Estrelas',\n", " 'Orestes Barbosa-Sílvio Caldas',\n", " 'Minha História',\n", " 0.99),\n", " (536,\n", " 'Vida De Cachorro',\n", " 'Rita Lee - Arnaldo Baptista - Sérgio Baptista',\n", " 'Minha História',\n", " 0.99),\n", " (537, 'Bat Macumba', 'Gilberto Gil - Caetano Veloso', 'Minha História', 0.99),\n", " (538, 'Desculpe Babe', 'Arnaldo Baptista - Rita Lee', 'Minha História', 0.99),\n", " (539,\n", " 'Rita Lee',\n", " 'Arnaldo Baptista/Rita Lee/Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (540,\n", " 'Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll',\n", " 'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho',\n", " 'Minha História',\n", " 0.99),\n", " (541,\n", " 'Banho De Lua',\n", " 'B. de Filippi - F. Migliaci - Versão: Fred Jorge',\n", " 'Minha História',\n", " 0.99),\n", " (542,\n", " 'Meu Refrigerador Não Funciona',\n", " 'Arnaldo Baptista - Rita Lee - Sérgio Dias',\n", " 'Minha História',\n", " 0.99),\n", " (543,\n", " 'Burn',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (544,\n", " 'Stormbringer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (545,\n", " 'Gypsy',\n", " 'Coverdale/Hughes/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (546,\n", " 'Lady Double Dealer',\n", " 'Coverdale',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (547, 'Mistreated', 'Coverdale', 'MK III The Final Concerts [Disc 1]', 0.99),\n", " (548,\n", " 'Smoke On The Water',\n", " 'Gillan/Glover/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (549,\n", " 'You Fool No One',\n", " 'Coverdale/Lord/Paice',\n", " 'MK III The Final Concerts [Disc 1]',\n", " 0.99),\n", " (550,\n", " 'Custard Pie',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (551,\n", " 'The Rover',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (552,\n", " 'In My Time Of Dying',\n", " 'John Bonham/John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (553,\n", " 'Houses Of The Holy',\n", " 'Jimmy Page/Robert Plant',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (554,\n", " 'Trampled Under Foot',\n", " 'John Paul Jones',\n", " 'Physical Graffiti [Disc 1]',\n", " 0.99),\n", " (555, 'Kashmir', 'John Bonham', 'Physical Graffiti [Disc 1]', 0.99),\n", " (556,\n", " 'Imperatriz',\n", " 'Guga/Marquinho Lessa/Tuninho Professor',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (557, 'Beija-Flor', 'Caruso/Cleber/Deo/Osmar', 'Sambas De Enredo 2001', 0.99),\n", " (558,\n", " 'Viradouro',\n", " 'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (559,\n", " 'Mocidade',\n", " 'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (560,\n", " 'Unidos Da Tijuca',\n", " 'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (561,\n", " 'Salgueiro',\n", " 'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (562,\n", " 'Mangueira',\n", " \"Bizuca/Clóvis Pê/Gilson Bernini/Marelo D'Aguia\",\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (563,\n", " 'União Da Ilha',\n", " 'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (564,\n", " 'Grande Rio',\n", " 'Carlos Santos/Ciro/Claudio Russo/Zé Luiz',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (565,\n", " 'Portela',\n", " 'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (566,\n", " 'Caprichosos',\n", " 'Gule/Jorge 101/Lequinho/Luiz Piao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (567, 'Tradição', 'Adalto Magalha/Lourenco', 'Sambas De Enredo 2001', 0.99),\n", " (568,\n", " 'Império Serrano',\n", " 'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (569,\n", " 'Tuiuti',\n", " 'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som',\n", " 'Sambas De Enredo 2001',\n", " 0.99),\n", " (570, '(Da Le) Yaleo', 'Santana', 'Supernatural', 0.99),\n", " (571,\n", " 'Love Of My Life',\n", " 'Carlos Santana & Dave Matthews',\n", " 'Supernatural',\n", " 0.99),\n", " (572, 'Put Your Lights On', 'E. Shrody', 'Supernatural', 0.99),\n", " (573,\n", " 'Africa Bamba',\n", " 'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo',\n", " 'Supernatural',\n", " 0.99),\n", " (574, 'Smooth', 'M. Itaal Shur & Rob Thomas', 'Supernatural', 0.99),\n", " (575, 'Do You Like The Way', 'L. Hill', 'Supernatural', 0.99),\n", " (576,\n", " 'Maria Maria',\n", " 'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow',\n", " 'Supernatural',\n", " 0.99),\n", " (577, 'Migra', 'R. Taha, Carlos Santana & T. Lindsay', 'Supernatural', 0.99),\n", " (578, 'Corazon Espinado', 'F. Olivera', 'Supernatural', 0.99),\n", " (579,\n", " 'Wishing It Was',\n", " 'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita',\n", " 'Supernatural',\n", " 0.99),\n", " (580, 'El Farol', 'Carlos Santana & KC Porter', 'Supernatural', 0.99),\n", " (581, 'Primavera', 'KC Porter & JB Eckl', 'Supernatural', 0.99),\n", " (582, 'The Calling', 'Carlos Santana & C. Thompson', 'Supernatural', 0.99),\n", " (583, 'Solução', None, 'The Best of Ed Motta', 0.99),\n", " (584, 'Manuel', None, 'The Best of Ed Motta', 0.99),\n", " (585, 'Entre E Ouça', None, 'The Best of Ed Motta', 0.99),\n", " (586, 'Um Contrato Com Deus', None, 'The Best of Ed Motta', 0.99),\n", " (587, 'Um Jantar Pra Dois', None, 'The Best of Ed Motta', 0.99),\n", " (588, 'Vamos Dançar', None, 'The Best of Ed Motta', 0.99),\n", " (589, 'Um Love', None, 'The Best of Ed Motta', 0.99),\n", " (590, 'Seis Da Tarde', None, 'The Best of Ed Motta', 0.99),\n", " (591, 'Baixo Rio', None, 'The Best of Ed Motta', 0.99),\n", " (592, 'Sombras Do Meu Destino', None, 'The Best of Ed Motta', 0.99),\n", " (593, 'Do You Have Other Loves?', None, 'The Best of Ed Motta', 0.99),\n", " (594, 'Agora Que O Dia Acordou', None, 'The Best of Ed Motta', 0.99),\n", " (595, 'Já!!!', None, 'The Best of Ed Motta', 0.99),\n", " (596, 'A Rua', None, 'The Best of Ed Motta', 0.99),\n", " (597,\n", " \"Now's The Time\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (598, 'Jeru', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (599,\n", " 'Compulsion',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (600,\n", " 'Tempus Fugit',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (601, \"Walkin'\", 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (602,\n", " \"'Round Midnight\",\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (603,\n", " 'Bye Bye Blackbird',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (604,\n", " 'New Rhumba',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (605, 'Generique', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (606,\n", " 'Summertime',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (607, 'So What', 'Miles Davis', 'The Essential Miles Davis [Disc 1]', 0.99),\n", " (608,\n", " 'The Pan Piper',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (609,\n", " 'Someday My Prince Will Come',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 1]',\n", " 0.99),\n", " (610,\n", " 'My Funny Valentine (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (611, 'E.S.P.', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (612, 'Nefertiti', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (613,\n", " 'Petits Machins (Little Stuff)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (614,\n", " 'Miles Runs The Voodoo Down',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (615,\n", " 'Little Church (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (616,\n", " 'Black Satin',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (617,\n", " 'Jean Pierre (Live)',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (618,\n", " 'Time After Time',\n", " 'Miles Davis',\n", " 'The Essential Miles Davis [Disc 2]',\n", " 0.99),\n", " (619, 'Portia', 'Miles Davis', 'The Essential Miles Davis [Disc 2]', 0.99),\n", " (620,\n", " \"Space Truckin'\",\n", " 'Blackmore/Gillan/Glover/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (621,\n", " 'Going Down / Highway Star',\n", " 'Gillan/Glover/Lord/Nix - Blackmore/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (622,\n", " 'Mistreated (Alternate Version)',\n", " 'Blackmore/Coverdale',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (623,\n", " 'You Fool No One (Alternate Version)',\n", " 'Blackmore/Coverdale/Lord/Paice',\n", " 'The Final Concerts (Disc 2)',\n", " 0.99),\n", " (624, 'Jeepers Creepers', None, \"Up An' Atom\", 0.99),\n", " (625, 'Blue Rythm Fantasy', None, \"Up An' Atom\", 0.99),\n", " (626, 'Drum Boogie', None, \"Up An' Atom\", 0.99),\n", " (627, 'Let Me Off Uptown', None, \"Up An' Atom\", 0.99),\n", " (628, 'Leave Us Leap', None, \"Up An' Atom\", 0.99),\n", " (629, 'Opus No.1', None, \"Up An' Atom\", 0.99),\n", " (630, 'Boogie Blues', None, \"Up An' Atom\", 0.99),\n", " (631, 'How High The Moon', None, \"Up An' Atom\", 0.99),\n", " (632, 'Disc Jockey Jump', None, \"Up An' Atom\", 0.99),\n", " (633, \"Up An' Atom\", None, \"Up An' Atom\", 0.99),\n", " (634, 'Bop Boogie', None, \"Up An' Atom\", 0.99),\n", " (635, 'Lemon Drop', None, \"Up An' Atom\", 0.99),\n", " (636, 'Coronation Drop', None, \"Up An' Atom\", 0.99),\n", " (637, 'Overtime', None, \"Up An' Atom\", 0.99),\n", " (638, 'Imagination', None, \"Up An' Atom\", 0.99),\n", " (639, \"Don't Take Your Love From Me\", None, \"Up An' Atom\", 0.99),\n", " (640, 'Midget', None, \"Up An' Atom\", 0.99),\n", " (641, \"I'm Coming Virginia\", None, \"Up An' Atom\", 0.99),\n", " (642, \"Payin' Them Dues Blues\", None, \"Up An' Atom\", 0.99),\n", " (643, 'Jungle Drums', None, \"Up An' Atom\", 0.99),\n", " (644, 'Showcase', None, \"Up An' Atom\", 0.99),\n", " (645, 'Swedish Schnapps', None, \"Up An' Atom\", 0.99),\n", " (646, 'Samba Da Bênção', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (647, 'Pot-Pourri N.º 4', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (648, 'Onde Anda Você', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (649, 'Samba Da Volta', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (650, 'Canto De Ossanha', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (651, 'Pot-Pourri N.º 5', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (652, 'Formosa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (653, 'Como É Duro Trabalhar', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (654, 'Minha Namorada', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (655, 'Por Que Será', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (656, 'Berimbau', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (657, 'Deixa', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (658, 'Pot-Pourri N.º 2', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (659, 'Samba Em Prelúdio', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (660, 'Carta Ao Tom 74', None, 'Vinícius De Moraes - Sem Limite', 0.99),\n", " (661, 'Linha de Passe (João Bosco)', None, 'Vozes do MPB', 0.99),\n", " (662,\n", " 'Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)',\n", " None,\n", " 'Vozes do MPB',\n", " 0.99),\n", " (663, 'Chão de Giz (Elba Ramalho)', None, 'Vozes do MPB', 0.99),\n", " (664, 'Marina (Dorival Caymmi)', None, 'Vozes do MPB', 0.99),\n", " (665, 'Aquarela (Toquinho)', None, 'Vozes do MPB', 0.99),\n", " (666, 'Coração do Agreste (Fafá de Belém)', None, 'Vozes do MPB', 0.99),\n", " (667, 'Dona (Roupa Nova)', None, 'Vozes do MPB', 0.99),\n", " (668, 'Começaria Tudo Outra Vez (Maria Creuza)', None, 'Vozes do MPB', 0.99),\n", " (669, 'Caçador de Mim (Sá & Guarabyra)', None, 'Vozes do MPB', 0.99),\n", " (670, 'Romaria (Renato Teixeira)', None, 'Vozes do MPB', 0.99),\n", " (671, 'As Rosas Não Falam (Beth Carvalho)', None, 'Vozes do MPB', 0.99),\n", " (672, 'Wave (Os Cariocas)', None, 'Vozes do MPB', 0.99),\n", " (673, 'Garota de Ipanema (Dick Farney)', None, 'Vozes do MPB', 0.99),\n", " (674, 'Preciso Apender a Viver Só (Maysa)', None, 'Vozes do MPB', 0.99),\n", " (675, 'Susie Q', 'Hawkins-Lewis-Broadwater', 'Chronicle, Vol. 1', 0.99),\n", " (676, 'I Put A Spell On You', 'Jay Hawkins', 'Chronicle, Vol. 1', 0.99),\n", " (677, 'Proud Mary', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (678, 'Bad Moon Rising', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (679, 'Lodi', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (680, 'Green River', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (681, 'Commotion', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (682, 'Down On The Corner', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (683, 'Fortunate Son', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (684, \"Travelin' Band\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (685, \"Who'll Stop The Rain\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (686, 'Up Around The Bend', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (687, 'Run Through The Jungle', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (688, \"Lookin' Out My Back Door\", 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (689,\n", " 'Long As I Can See The Light',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (690,\n", " 'I Heard It Through The Grapevine',\n", " 'Whitfield-Strong',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (691,\n", " 'Have You Ever Seen The Rain?',\n", " 'J. C. Fogerty',\n", " 'Chronicle, Vol. 1',\n", " 0.99),\n", " (692, 'Hey Tonight', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (693, 'Sweet Hitch-Hiker', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (694, 'Someday Never Comes', 'J. C. Fogerty', 'Chronicle, Vol. 1', 0.99),\n", " (695, 'Walking On The Water', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (696, 'Suzie-Q, Pt. 2', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (697, 'Born On The Bayou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (698, 'Good Golly Miss Molly', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (699, 'Tombstone Shadow', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (700, 'Wrote A Song For Everyone', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (701,\n", " 'Night Time Is The Right Time',\n", " 'J.C. Fogerty',\n", " 'Chronicle, Vol. 2',\n", " 0.99),\n", " (702, 'Cotton Fields', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (703, 'It Came Out Of The Sky', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (704, \"Don't Look Now\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (705, 'The Midnight Special', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (706, 'Before You Accuse Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (707, 'My Baby Left Me', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (708, 'Pagan Baby', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (709, '(Wish I Could) Hideaway', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (710, \"It's Just A Thought\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (711, 'Molina', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (712, 'Born To Move', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (713, \"Lookin' For A Reason\", 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (714, 'Hello Mary Lou', 'J.C. Fogerty', 'Chronicle, Vol. 2', 0.99),\n", " (715,\n", " 'Gatas Extraordinárias',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (716, 'Brasil', None, 'Cássia Eller - Coleção Sem Limite [Disc 2]', 0.99),\n", " (717,\n", " 'Eu Sou Neguinha (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (718,\n", " 'Geração Coca-Cola (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (719,\n", " 'Lanterna Dos Afogados',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (720,\n", " 'Coroné Antonio Bento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (721,\n", " 'Você Passa, Eu Acho Graça (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (722,\n", " 'Meu Mundo Fica Completo (Com Você)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (723,\n", " '1° De Julho',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (724,\n", " 'Música Urbana 2',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (725,\n", " 'Vida Bandida (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (726,\n", " 'Palavras Ao Vento',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (727,\n", " 'Não Sei O Que Eu Quero Da Vida',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (728,\n", " 'Woman Is The Nigger Of The World (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (729,\n", " 'Juventude Transviada (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Coleção Sem Limite [Disc 2]',\n", " 0.99),\n", " (730, 'Malandragem', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (731, 'O Segundo Sol', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (732,\n", " 'Smells Like Teen Spirit (Ao Vivo)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (733, 'E.C.T.', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (734,\n", " 'Todo Amor Que Houver Nesta Vida',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (735, 'Metrô. Linha 743', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (736, 'Nós (Ao Vivo)', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (737,\n", " 'Na Cadência Do Samba',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (738,\n", " 'Admirável Gado Novo',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (739, 'Eleanor Rigby', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (740, 'Socorro', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (741, 'Blues Da Piedade', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (742, 'Rubens', None, 'Cássia Eller - Sem Limite [Disc 1]', 0.99),\n", " (743,\n", " 'Não Deixe O Samba Morrer - Cassia Eller e Alcione',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (744,\n", " 'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)',\n", " None,\n", " 'Cássia Eller - Sem Limite [Disc 1]',\n", " 0.99),\n", " (745, \"Comin' Home\", 'Bolin/Coverdale/Paice', 'Come Taste The Band', 0.99),\n", " (746, 'Lady Luck', 'Cook/Coverdale', 'Come Taste The Band', 0.99),\n", " (747, \"Gettin' Tighter\", 'Bolin/Hughes', 'Come Taste The Band', 0.99),\n", " (748, 'Dealer', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (749, 'I Need Love', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (750, 'Drifter', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (751, 'Love Child', 'Bolin/Coverdale', 'Come Taste The Band', 0.99),\n", " (752,\n", " \"This Time Around / Owed to 'G' [Instrumental]\",\n", " 'Bolin/Hughes/Lord',\n", " 'Come Taste The Band',\n", " 0.99),\n", " (753, 'You Keep On Moving', 'Coverdale/Hughes', 'Come Taste The Band', 0.99),\n", " (754,\n", " 'Speed King',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (755,\n", " 'Bloodsucker',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (756,\n", " 'Child In Time',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (757,\n", " 'Flight Of The Rat',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (758,\n", " 'Into The Fire',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (759,\n", " 'Living Wreck',\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (760,\n", " \"Hard Lovin' Man\",\n", " 'Blackmore, Gillan, Glover, Lord, Paice',\n", " 'Deep Purple In Rock',\n", " 0.99),\n", " (761,\n", " 'Fireball',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (762,\n", " 'No No No',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (763,\n", " 'Strange Kind Of Woman',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (764,\n", " \"Anyone's Daughter\",\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (765,\n", " 'The Mule',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (766,\n", " 'Fools',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (767,\n", " 'No One Came',\n", " 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice',\n", " 'Fireball',\n", " 0.99),\n", " (768,\n", " 'Knocking At Your Back Door',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (769,\n", " 'Bad Attitude',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (770,\n", " 'Child In Time (Son Of Aleric - Instrumental)',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (771,\n", " \"Nobody's Home\",\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (772,\n", " 'Black Night',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (773,\n", " 'Perfect Strangers',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (774,\n", " 'The Unwritten Law',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (775,\n", " 'Call Of The Wild',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (776,\n", " 'Hush',\n", " 'South',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (777,\n", " 'Smoke On The Water',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (778,\n", " 'Space Trucking',\n", " 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice',\n", " \"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 0.99),\n", " (779,\n", " 'Highway Star',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (780,\n", " \"Maybe I'm A Leo\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (781,\n", " 'Pictures Of Home',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (782,\n", " 'Never Before',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (783,\n", " 'Smoke On The Water',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (784,\n", " 'Lazy',\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (785,\n", " \"Space Truckin'\",\n", " 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover',\n", " 'Machine Head',\n", " 0.99),\n", " (786,\n", " 'Vavoom : Ted The Mechanic',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (787,\n", " 'Loosen My Strings',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (788,\n", " 'Soon Forgotten',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (789,\n", " 'Sometimes I Feel Like Screaming',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (790,\n", " \"Cascades : I'm Not Your Lover\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (791,\n", " 'The Aviator',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (792,\n", " \"Rosa's Cantina\",\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (793,\n", " 'A Castle Full Of Rascals',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (794,\n", " 'A Touch Away',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (795,\n", " 'Hey Cisco',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (796,\n", " 'Somebody Stole My Guitar',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (797,\n", " 'The Purpendicular Waltz',\n", " 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice',\n", " 'Purpendicular',\n", " 0.99),\n", " (798,\n", " 'King Of Dreams',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (799,\n", " 'The Cut Runs Deep',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (800,\n", " 'Fire In The Basement',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (801, 'Truth Hurts', 'Blackmore, Glover, Turner', 'Slaves And Masters', 0.99),\n", " (802,\n", " 'Breakfast In Bed',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (803,\n", " 'Love Conquers All',\n", " 'Blackmore, Glover, Turner',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (804,\n", " 'Fortuneteller',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (805,\n", " 'Too Much Is Not Enough',\n", " 'Turner, Held, Greenwood',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (806,\n", " 'Wicked Ways',\n", " 'Blackmore, Glover, Turner, Lord, Paice',\n", " 'Slaves And Masters',\n", " 0.99),\n", " (807,\n", " 'Stormbringer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (808,\n", " \"Love Don't Mean a Thing\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (809,\n", " 'Holy Man',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (810,\n", " 'Hold On',\n", " 'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord',\n", " 'Stormbringer',\n", " 0.99),\n", " (811,\n", " 'Lady Double Dealer',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (812,\n", " \"You Can't Do it Right (With the One You Love)\",\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (813,\n", " 'High Ball Shooter',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (814,\n", " 'The Gypsy',\n", " 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (815,\n", " 'Soldier Of Fortune',\n", " 'D.Coverdale/R.Blackmore/Ritchie Blackmore',\n", " 'Stormbringer',\n", " 0.99),\n", " (816,\n", " 'The Battle Rages On',\n", " 'ian paice/jon lord',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (817, 'Lick It Up', 'roger glover', 'The Battle Rages On', 0.99),\n", " (818, 'Anya', 'jon lord/roger glover', 'The Battle Rages On', 0.99),\n", " (819, 'Talk About Love', 'roger glover', 'The Battle Rages On', 0.99),\n", " (820, 'Time To Kill', 'roger glover', 'The Battle Rages On', 0.99),\n", " (821, 'Ramshackle Man', 'roger glover', 'The Battle Rages On', 0.99),\n", " (822, 'A Twist In The Tail', 'roger glover', 'The Battle Rages On', 0.99),\n", " (823,\n", " 'Nasty Piece Of Work',\n", " 'jon lord/roger glover',\n", " 'The Battle Rages On',\n", " 0.99),\n", " (824, 'Solitaire', 'roger glover', 'The Battle Rages On', 0.99),\n", " (825, \"One Man's Meat\", 'roger glover', 'The Battle Rages On', 0.99),\n", " (826,\n", " 'Pour Some Sugar On Me',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (827, 'Photograph', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (828, 'Love Bites', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (829, \"Let's Get Rocked\", None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (830,\n", " 'Two Steps Behind [Acoustic Version]',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (831, 'Animal', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (832, 'Heaven Is', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (833, 'Rocket', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (834,\n", " 'When Love & Hate Collide',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (835, 'Action', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (836,\n", " 'Make Love Like A Man',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (837, 'Armageddon It', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (838,\n", " 'Have You Ever Needed Someone So Bad',\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (839, 'Rock Of Ages', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (840, 'Hysteria', None, \"Vault: Def Leppard's Greatest Hits\", 0.99),\n", " (841,\n", " \"Bringin' On The Heartbreak\",\n", " None,\n", " \"Vault: Def Leppard's Greatest Hits\",\n", " 0.99),\n", " (842, 'Roll Call', 'Jim Beard', 'Outbreak', 0.99),\n", " (843,\n", " 'Otay',\n", " 'John Scofield, Robert Aries, Milton Chambers and Gary Grainger',\n", " 'Outbreak',\n", " 0.99),\n", " (844, 'Groovus Interruptus', 'Jim Beard', 'Outbreak', 0.99),\n", " (845, 'Paris On Mine', 'Jon Herington', 'Outbreak', 0.99),\n", " (846, 'In Time', 'Sylvester Stewart', 'Outbreak', 0.99),\n", " (847, 'Plan B', 'Dean Brown, Dennis Chambers & Jim Beard', 'Outbreak', 0.99),\n", " (848, 'Outbreak', 'Jim Beard & Jon Herington', 'Outbreak', 0.99),\n", " (849, 'Baltimore, DC', 'John Scofield', 'Outbreak', 0.99),\n", " (850,\n", " 'Talkin Loud and Saying Nothin',\n", " 'James Brown & Bobby Byrd',\n", " 'Outbreak',\n", " 0.99),\n", " (851, 'Pétala', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (852, 'Meu Bem-Querer', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (853, 'Cigano', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (854, 'Boa Noite', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (855, 'Fato Consumado', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (856, 'Faltando Um Pedaço', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (857, 'Álibi', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (858, 'Esquinas', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (859, 'Se...', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (860, 'Eu Te Devoro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (861, 'Lilás', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (862, 'Acelerou', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (863, 'Um Amor Puro', None, 'Djavan Ao Vivo - Vol. 02', 0.99),\n", " (864, 'Samurai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (865, 'Nem Um Dia', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (866, 'Oceano', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (867, 'Açai', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (868, 'Serrado', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (869, 'Flor De Lis', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (870, 'Amar É Tudo', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (871, 'Azul', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (872, 'Seduzir', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (873,\n", " 'A Carta',\n", " 'Djavan - Gabriel, O Pensador',\n", " 'Djavan Ao Vivo - Vol. 1',\n", " 0.99),\n", " (874, 'Sina', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (875, 'Acelerou', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (876, 'Um Amor Puro', 'Djavan', 'Djavan Ao Vivo - Vol. 1', 0.99),\n", " (877, 'O Bêbado e a Equilibrista', None, 'Elis Regina-Minha História', 0.99),\n", " (878, 'O Mestre-Sala dos Mares', None, 'Elis Regina-Minha História', 0.99),\n", " (879, 'Atrás da Porta', None, 'Elis Regina-Minha História', 0.99),\n", " (880, 'Dois Pra Lá, Dois Pra Cá', None, 'Elis Regina-Minha História', 0.99),\n", " (881, 'Casa no Campo', None, 'Elis Regina-Minha História', 0.99),\n", " (882, 'Romaria', None, 'Elis Regina-Minha História', 0.99),\n", " (883, 'Alô, Alô, Marciano', None, 'Elis Regina-Minha História', 0.99),\n", " (884, 'Me Deixas Louca', None, 'Elis Regina-Minha História', 0.99),\n", " (885, 'Fascinação', None, 'Elis Regina-Minha História', 0.99),\n", " (886, 'Saudosa Maloca', None, 'Elis Regina-Minha História', 0.99),\n", " (887, 'As Aparências Enganam', None, 'Elis Regina-Minha História', 0.99),\n", " (888, 'Madalena', None, 'Elis Regina-Minha História', 0.99),\n", " (889, 'Maria Rosa', None, 'Elis Regina-Minha História', 0.99),\n", " (890, 'Aprendendo A Jogar', None, 'Elis Regina-Minha História', 0.99),\n", " (891, 'Layla', 'Clapton/Gordon', 'The Cream Of Clapton', 0.99),\n", " (892, 'Badge', 'Clapton/Harrison', 'The Cream Of Clapton', 0.99),\n", " (893, 'I Feel Free', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (894, 'Sunshine Of Your Love', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (895,\n", " 'Crossroads',\n", " 'Clapton/Robert Johnson Arr: Eric Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (896,\n", " 'Strange Brew',\n", " 'Clapton/Collins/Pappalardi',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (897, 'White Room', 'Bruce/Clapton', 'The Cream Of Clapton', 0.99),\n", " (898, 'Bell Bottom Blues', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (899, 'Cocaine', 'Cale/Clapton', 'The Cream Of Clapton', 0.99),\n", " (900, 'I Shot The Sheriff', 'Marley', 'The Cream Of Clapton', 0.99),\n", " (901, 'After Midnight', 'Clapton/J. J. Cale', 'The Cream Of Clapton', 0.99),\n", " (902,\n", " 'Swing Low Sweet Chariot',\n", " 'Clapton/Trad. Arr. Clapton',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (903, 'Lay Down Sally', 'Clapton/Levy', 'The Cream Of Clapton', 0.99),\n", " (904,\n", " 'Knockin On Heavens Door',\n", " 'Clapton/Dylan',\n", " 'The Cream Of Clapton',\n", " 0.99),\n", " (905, 'Wonderful Tonight', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (906, 'Let It Grow', 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (907, 'Promises', 'Clapton/F.eldman/Linn', 'The Cream Of Clapton', 0.99),\n", " (908, \"I Can't Stand It\", 'Clapton', 'The Cream Of Clapton', 0.99),\n", " (909, 'Signe', 'Eric Clapton', 'Unplugged', 0.99),\n", " (910, 'Before You Accuse Me', 'Eugene McDaniel', 'Unplugged', 0.99),\n", " (911, 'Hey Hey', 'Big Bill Broonzy', 'Unplugged', 0.99),\n", " (912, 'Tears In Heaven', 'Eric Clapton, Will Jennings', 'Unplugged', 0.99),\n", " (913, 'Lonely Stranger', 'Eric Clapton', 'Unplugged', 0.99),\n", " (914,\n", " \"Nobody Knows You When You're Down & Out\",\n", " 'Jimmy Cox',\n", " 'Unplugged',\n", " 0.99),\n", " (915, 'Layla', 'Eric Clapton, Jim Gordon', 'Unplugged', 0.99),\n", " (916, 'Running On Faith', 'Jerry Lynn Williams', 'Unplugged', 0.99),\n", " (917, \"Walkin' Blues\", 'Robert Johnson', 'Unplugged', 0.99),\n", " (918, 'Alberta', 'Traditional', 'Unplugged', 0.99),\n", " (919, 'San Francisco Bay Blues', 'Jesse Fuller', 'Unplugged', 0.99),\n", " (920, 'Malted Milk', 'Robert Johnson', 'Unplugged', 0.99),\n", " (921, 'Old Love', 'Eric Clapton, Robert Cray', 'Unplugged', 0.99),\n", " (922,\n", " \"Rollin' And Tumblin'\",\n", " 'McKinley Morgenfield (Muddy Waters)',\n", " 'Unplugged',\n", " 0.99),\n", " (923, 'Collision', 'Jon Hudson/Mike Patton', 'Album Of The Year', 0.99),\n", " (924,\n", " 'Stripsearch',\n", " 'Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (925,\n", " 'Last Cup Of Sorrow',\n", " 'Bill Gould/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (926,\n", " 'Naked In Front Of The Computer',\n", " 'Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (927,\n", " 'Helpless',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (928,\n", " 'Mouth To Mouth',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (929,\n", " 'Ashes To Ashes',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (930,\n", " 'She Loves Me Not',\n", " 'Bill Gould/Mike Bordin/Mike Patton',\n", " 'Album Of The Year',\n", " 0.99),\n", " (931, 'Got That Feeling', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (932,\n", " 'Paths Of Glory',\n", " 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum',\n", " 'Album Of The Year',\n", " 0.99),\n", " (933, 'Home Sick Home', 'Mike Patton', 'Album Of The Year', 0.99),\n", " (934, 'Pristina', 'Bill Gould/Mike Patton', 'Album Of The Year', 0.99),\n", " (935, 'Land Of Sunshine', None, 'Angel Dust', 0.99),\n", " (936, 'Caffeine', None, 'Angel Dust', 0.99),\n", " (937, 'Midlife Crisis', None, 'Angel Dust', 0.99),\n", " (938, 'RV', None, 'Angel Dust', 0.99),\n", " (939, 'Smaller And Smaller', None, 'Angel Dust', 0.99),\n", " (940, \"Everything's Ruined\", None, 'Angel Dust', 0.99),\n", " (941, 'Malpractice', None, 'Angel Dust', 0.99),\n", " (942, 'Kindergarten', None, 'Angel Dust', 0.99),\n", " (943, 'Be Aggressive', None, 'Angel Dust', 0.99),\n", " (944, 'A Small Victory', None, 'Angel Dust', 0.99),\n", " (945, 'Crack Hitler', None, 'Angel Dust', 0.99),\n", " (946, 'Jizzlobber', None, 'Angel Dust', 0.99),\n", " (947, 'Midnight Cowboy', None, 'Angel Dust', 0.99),\n", " (948, 'Easy', None, 'Angel Dust', 0.99),\n", " (949,\n", " 'Get Out',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (950,\n", " 'Ricochet',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (951,\n", " 'Evidence',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (952,\n", " 'The Gentle Art Of Making Enemies',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (953,\n", " 'Star A.D.',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (954,\n", " 'Cuckoo For Caca',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (955,\n", " 'Caralho Voador',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (956,\n", " 'Ugly In The Morning',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (957,\n", " 'Digging The Grave',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (958,\n", " 'Take This Bottle',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (959,\n", " 'King For A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (960,\n", " 'What A Day',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (961,\n", " 'The Last To Know',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (962,\n", " 'Just A Man',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (963,\n", " 'Absolute Zero',\n", " 'Mike Bordin, Billy Gould, Mike Patton',\n", " 'King For A Day Fool For A Lifetime',\n", " 0.99),\n", " (964, 'From Out Of Nowhere', 'Faith No More', 'The Real Thing', 0.99),\n", " (965, 'Epic', 'Faith No More', 'The Real Thing', 0.99),\n", " (966, 'Falling To Pieces', 'Faith No More', 'The Real Thing', 0.99),\n", " (967, \"Surprise! You're Dead!\", 'Faith No More', 'The Real Thing', 0.99),\n", " (968, 'Zombie Eaters', 'Faith No More', 'The Real Thing', 0.99),\n", " (969, 'The Real Thing', 'Faith No More', 'The Real Thing', 0.99),\n", " (970, 'Underwater Love', 'Faith No More', 'The Real Thing', 0.99),\n", " (971, 'The Morning After', 'Faith No More', 'The Real Thing', 0.99),\n", " (972, 'Woodpecker From Mars', 'Faith No More', 'The Real Thing', 0.99),\n", " (973,\n", " 'War Pigs',\n", " 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne',\n", " 'The Real Thing',\n", " 0.99),\n", " (974, 'Edge Of The World', 'Faith No More', 'The Real Thing', 0.99),\n", " (975, 'Deixa Entrar', None, 'Deixa Entrar', 0.99),\n", " (976, 'Falamansa Song', None, 'Deixa Entrar', 0.99),\n", " (977, 'Xote Dos Milagres', None, 'Deixa Entrar', 0.99),\n", " (978, 'Rindo À Toa', None, 'Deixa Entrar', 0.99),\n", " (979, 'Confidência', None, 'Deixa Entrar', 0.99),\n", " (980, 'Forró De Tóquio', None, 'Deixa Entrar', 0.99),\n", " (981, 'Zeca Violeiro', None, 'Deixa Entrar', 0.99),\n", " (982, 'Avisa', None, 'Deixa Entrar', 0.99),\n", " (983, 'Principiando/Decolagem', None, 'Deixa Entrar', 0.99),\n", " (984, 'Asas', None, 'Deixa Entrar', 0.99),\n", " (985, 'Medo De Escuro', None, 'Deixa Entrar', 0.99),\n", " (986, 'Oração', None, 'Deixa Entrar', 0.99),\n", " (987, 'Minha Gata', None, 'Deixa Entrar', 0.99),\n", " (988, 'Desaforo', None, 'Deixa Entrar', 0.99),\n", " (989,\n", " 'In Your Honor',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (990,\n", " 'No Way Back',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (991,\n", " 'Best Of You',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (992,\n", " 'DOA',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (993,\n", " 'Hell',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (994,\n", " 'The Last Song',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (995,\n", " 'Free Me',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (996,\n", " 'Resolve',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (997,\n", " 'The Deepest Blues Are Black',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (998,\n", " 'End Over End',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett',\n", " 'In Your Honor [Disc 1]',\n", " 0.99),\n", " (999,\n", " 'Still',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 'In Your Honor [Disc 2]',\n", " 0.99),\n", " (1000,\n", " 'What If I Do?',\n", " 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS',\n", " 'In Your Honor [Disc 2]',\n", " 0.99),\n", " ...]" ] }, "metadata": { "tags": [] }, "execution_count": 13 } ] }, { "cell_type": "markdown", "metadata": { "id": "KnFmQj6-taT7", "colab_type": "text" }, "source": [ "Now we can simply create a summary query that returns the album, and we will add the number of songs and total price. We will save this table as a permanent table *AlbumStats*." ] }, { "cell_type": "code", "metadata": { "id": "tbsHtSuvtaT8", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 6149 }, "outputId": "2adab258-4fa5-497e-8fa7-f179dc148443" }, "source": [ "# AS Name saves the output as a table with name Name\n", "query = \"SELECT Title, COUNT(*) AS NrSongs, SUM(unitprice) AS TotalPrice FROM AlbumSongs \"\n", "query += \"GROUP BY Title\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 15, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[('...And Justice For All', 9, 8.91),\n", " ('20th Century Masters - The Millennium Collection: The Best of Scorpions',\n", " 12,\n", " 11.88),\n", " ('A Copland Celebration, Vol. I', 1, 0.99),\n", " ('A Matter of Life and Death', 11, 10.89),\n", " ('A Real Dead One', 12, 11.88),\n", " ('A Real Live One', 11, 10.89),\n", " ('A Soprano Inspired', 1, 0.99),\n", " ('A TempestadeTempestade Ou O Livro Dos Dias', 15, 14.850000000000001),\n", " ('A-Sides', 17, 16.830000000000002),\n", " ('Ace Of Spades', 15, 14.850000000000001),\n", " ('Achtung Baby', 12, 11.88),\n", " ('Acústico', 22, 21.779999999999994),\n", " ('Acústico MTV', 21, 20.789999999999996),\n", " ('Acústico MTV [Live]', 17, 16.830000000000002),\n", " ('Adams, John: The Chairman Dances', 1, 0.99),\n", " ('Adorate Deum: Gregorian Chant from the Proper of the Mass', 1, 0.99),\n", " ('Afrociberdelia', 23, 22.769999999999992),\n", " ('Album Of The Year', 12, 11.88),\n", " ('Alcohol Fueled Brewtality Live! [Disc 1]', 13, 12.870000000000001),\n", " ('Alcohol Fueled Brewtality Live! [Disc 2]', 5, 4.95),\n", " (\"All That You Can't Leave Behind\", 11, 10.89),\n", " ('Allegri: Miserere', 1, 0.99),\n", " ('American Idiot', 13, 12.870000000000001),\n", " ('Angel Dust', 14, 13.860000000000001),\n", " ('Ao Vivo [IMPORT]', 19, 18.81),\n", " ('Appetite for Destruction', 12, 11.88),\n", " ('Aquaman', 1, 1.99),\n", " ('Are You Experienced?', 17, 16.830000000000002),\n", " ('Armada: Music from the Courts of England and Spain', 1, 0.99),\n", " ('Arquivo II', 12, 11.88),\n", " ('Arquivo Os Paralamas Do Sucesso', 16, 15.840000000000002),\n", " ('As Canções de Eu Tu Eles', 14, 13.860000000000001),\n", " ('Audioslave', 14, 13.860000000000001),\n", " ('Axé Bahia 2001', 14, 13.860000000000001),\n", " ('B-Sides 1980-1990', 15, 14.850000000000001),\n", " ('BBC Sessions [Disc 1] [Live]', 14, 13.860000000000001),\n", " ('BBC Sessions [Disc 2] [Live]', 10, 9.9),\n", " ('Bach: Goldberg Variations', 1, 0.99),\n", " ('Bach: Orchestral Suites Nos. 1 - 4', 1, 0.99),\n", " ('Bach: The Brandenburg Concertos', 1, 0.99),\n", " ('Bach: The Cello Suites', 1, 0.99),\n", " ('Bach: Toccata & Fugue in D Minor', 1, 0.99),\n", " ('Bach: Violin Concertos', 1, 0.99),\n", " ('Back to Black', 12, 11.88),\n", " ('BackBeat Soundtrack', 12, 11.88),\n", " ('Balls to the Wall', 1, 0.99),\n", " ('Bark at the Moon (Remastered)', 1, 0.99),\n", " ('Bartok: Violin & Viola Concertos', 1, 0.99),\n", " ('Barulhinho Bom', 18, 17.82),\n", " ('Battlestar Galactica (Classic), Season 1', 24, 47.760000000000005),\n", " ('Battlestar Galactica, Season 3', 19, 37.809999999999995),\n", " ('Battlestar Galactica: The Story So Far', 1, 1.99),\n", " ('Beethoven Piano Sonatas: Moonlight & Pastorale', 1, 0.99),\n", " ('Beethoven: Symhonies Nos. 5 & 6', 1, 0.99),\n", " (\"Beethoven: Symphony No. 6 'Pastoral' Etc.\", 1, 0.99),\n", " ('Berlioz: Symphonie Fantastique', 1, 0.99),\n", " ('Beyond Good And Evil', 12, 11.88),\n", " ('Big Ones', 15, 14.850000000000001),\n", " ('Bizet: Carmen Highlights', 1, 0.99),\n", " ('Black Album', 12, 11.88),\n", " ('Black Sabbath', 7, 6.930000000000001),\n", " ('Black Sabbath Vol. 4 (Remaster)', 10, 9.9),\n", " ('Blizzard of Ozz', 2, 1.98),\n", " ('Blood Sugar Sex Magik', 17, 16.830000000000002),\n", " ('Blue Moods', 13, 12.870000000000001),\n", " ('Body Count', 17, 16.830000000000002),\n", " ('Bongo Fury', 9, 8.91),\n", " ('Brave New World', 10, 9.9),\n", " ('By The Way', 16, 15.840000000000002),\n", " ('Cafezinho', 14, 13.860000000000001),\n", " ('Cake: B-Sides and Rarities', 1, 0.99),\n", " ('Californication', 15, 14.850000000000001),\n", " ('Carmina Burana', 1, 0.99),\n", " ('Carnaval 2001', 14, 13.860000000000001),\n", " ('Carried to Dust (Bonus Track Version)', 1, 0.99),\n", " ('Carry On', 14, 13.860000000000001),\n", " ('Cesta Básica', 10, 9.9),\n", " ('Charpentier: Divertissements, Airs & Concerts', 1, 0.99),\n", " ('Chemical Wedding', 11, 10.89),\n", " ('Chill: Brazil (Disc 1)', 17, 16.830000000000002),\n", " ('Chill: Brazil (Disc 2)', 17, 16.830000000000002),\n", " ('Chopin: Piano Concertos Nos. 1 & 2', 1, 0.99),\n", " ('Chronicle, Vol. 1', 20, 19.799999999999997),\n", " ('Chronicle, Vol. 2', 20, 19.799999999999997),\n", " ('Cidade Negra - Hits', 14, 13.860000000000001),\n", " ('Coda', 8, 7.920000000000001),\n", " ('Come Taste The Band', 9, 8.91),\n", " ('Compositores', 15, 14.850000000000001),\n", " ('Contraband', 13, 12.870000000000001),\n", " ('Core', 12, 11.88),\n", " ('Cássia Eller - Coleção Sem Limite [Disc 2]', 15, 14.850000000000001),\n", " ('Cássia Eller - Sem Limite [Disc 1]', 15, 14.850000000000001),\n", " ('Da Lama Ao Caos', 13, 12.870000000000001),\n", " ('Dance Of Death', 11, 10.89),\n", " ('Dark Side Of The Moon', 9, 8.91),\n", " ('Deep Purple In Rock', 7, 6.930000000000001),\n", " ('Deixa Entrar', 14, 13.860000000000001),\n", " ('Demorou...', 12, 11.88),\n", " ('Diary of a Madman (Remastered)', 1, 0.99),\n", " ('Diver Down', 12, 11.88),\n", " ('Djavan Ao Vivo - Vol. 02', 13, 12.870000000000001),\n", " ('Djavan Ao Vivo - Vol. 1', 13, 12.870000000000001),\n", " ('Duos II', 1, 0.99),\n", " ('Elgar: Cello Concerto & Vaughan Williams: Fantasias', 1, 0.99),\n", " ('Elis Regina-Minha História', 14, 13.860000000000001),\n", " ('Emergency On Planet Earth', 10, 9.9),\n", " ('English Renaissance', 2, 1.98),\n", " ('Every Kind of Light', 2, 1.98),\n", " ('Faceless', 12, 11.88),\n", " ('Facelift', 12, 11.88),\n", " ('Fauré: Requiem, Ravel: Pavane & Others', 1, 0.99),\n", " ('Fear Of The Dark', 12, 11.88),\n", " ('Fireball', 7, 6.930000000000001),\n", " ('For Those About To Rock We Salute You', 10, 9.9),\n", " ('Frank', 11, 10.89),\n", " ('From The Muddy Banks Of The Wishkah [Live]', 17, 16.830000000000002),\n", " ('Garage Inc. (Disc 1)', 11, 10.89),\n", " ('Garage Inc. (Disc 2)', 16, 15.840000000000002),\n", " ('Get Born', 13, 12.870000000000001),\n", " ('Great Opera Choruses', 1, 0.99),\n", " (\"Great Performances - Barber's Adagio and Other Romantic Favorites for Strings\",\n", " 1,\n", " 0.99),\n", " ('Great Recordings of the Century - Mahler: Das Lied von der Erde', 1, 0.99),\n", " ('Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder',\n", " 1,\n", " 0.99),\n", " (\"Great Recordings of the Century: Paganini's 24 Caprices\", 1, 0.99),\n", " ('Greatest Hits', 57, 56.43000000000003),\n", " ('Greatest Hits I', 17, 16.830000000000002),\n", " ('Greatest Hits II', 17, 16.830000000000002),\n", " ('Greatest Kiss', 20, 19.799999999999997),\n", " ('Green', 11, 10.89),\n", " ('Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande', 1, 0.99),\n", " ('Górecki: Symphony No. 3', 1, 0.99),\n", " ('Handel: Music for the Royal Fireworks (Original Version 1749)', 1, 0.99),\n", " ('Handel: The Messiah (Highlights)', 1, 0.99),\n", " ('Haydn: Symphonies 99 - 104', 1, 0.99),\n", " ('Heart of the Night', 12, 11.88),\n", " ('Heroes, Season 1', 23, 45.77),\n", " ('Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 1, 0.99),\n", " ('Hot Rocks, 1964-1971 (Disc 1)', 12, 11.88),\n", " ('House of Pain', 19, 18.81),\n", " ('Houses Of The Holy', 8, 7.920000000000001),\n", " ('How To Dismantle An Atomic Bomb', 11, 10.89),\n", " ('IV', 8, 7.920000000000001),\n", " ('In Step', 10, 9.9),\n", " ('In Through The Out Door', 7, 6.930000000000001),\n", " ('In Your Honor [Disc 1]', 10, 9.9),\n", " ('In Your Honor [Disc 2]', 10, 9.9),\n", " ('Instant Karma: The Amnesty International Campaign to Save Darfur',\n", " 23,\n", " 22.769999999999992),\n", " ('International Superhits', 21, 20.789999999999996),\n", " ('Into The Light', 12, 11.88),\n", " ('Iron Maiden', 9, 8.91),\n", " ('J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro',\n", " 1,\n", " 0.99),\n", " ('Jagged Little Pill', 13, 12.870000000000001),\n", " ('Jorge Ben Jor 25 Anos', 14, 13.860000000000001),\n", " ('Jota Quest-1995', 12, 11.88),\n", " ('Judas 0: B-Sides and Rarities', 16, 15.840000000000002),\n", " (\"Kill 'Em All\", 10, 9.9),\n", " ('Killers', 10, 9.9),\n", " ('King For A Day Fool For A Lifetime', 15, 14.850000000000001),\n", " (\"Knocking at Your Back Door: The Best Of Deep Purple in the 80's\",\n", " 11,\n", " 10.89),\n", " ('Koyaanisqatsi (Soundtrack from the Motion Picture)', 1, 0.99),\n", " ('LOST, Season 4', 17, 33.82999999999999),\n", " ('Led Zeppelin I', 9, 8.91),\n", " ('Led Zeppelin II', 9, 8.91),\n", " ('Led Zeppelin III', 10, 9.9),\n", " ('Let There Be Rock', 8, 7.920000000000001),\n", " (\"Liszt - 12 Études D'Execution Transcendante\", 1, 0.99),\n", " ('Live After Death', 18, 17.82),\n", " ('Live At Donington 1992 (Disc 1)', 10, 9.9),\n", " ('Live At Donington 1992 (Disc 2)', 10, 9.9),\n", " ('Live On Two Legs [Live]', 16, 15.840000000000002),\n", " ('Live [Disc 1]', 10, 9.9),\n", " ('Live [Disc 2]', 9, 8.91),\n", " ('Living After Midnight', 16, 15.840000000000002),\n", " ('Load', 14, 13.860000000000001),\n", " ('Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 1, 0.99),\n", " ('Lost, Season 1', 25, 49.75000000000001),\n", " ('Lost, Season 2', 24, 47.760000000000005),\n", " ('Lost, Season 3', 26, 51.74000000000001),\n", " ('Lulu Santos - RCA 100 Anos De Música - Álbum 01', 14, 13.860000000000001),\n", " ('Lulu Santos - RCA 100 Anos De Música - Álbum 02', 14, 13.860000000000001),\n", " ('MK III The Final Concerts [Disc 1]', 7, 6.930000000000001),\n", " ('Machine Head', 7, 6.930000000000001),\n", " ('Mais Do Mesmo', 16, 15.840000000000002),\n", " ('Maquinarama', 12, 11.88),\n", " ('Mascagni: Cavalleria Rusticana', 1, 0.99),\n", " ('Master Of Puppets', 8, 7.920000000000001),\n", " (\"Mendelssohn: A Midsummer Night's Dream\", 1, 0.99),\n", " ('Meus Momentos', 14, 13.860000000000001),\n", " ('Mezmerize', 11, 10.89),\n", " ('Miles Ahead', 14, 13.860000000000001),\n", " ('Milton Nascimento Ao Vivo', 13, 12.870000000000001),\n", " ('Minas', 13, 12.870000000000001),\n", " ('Minha Historia', 34, 33.65999999999998),\n", " ('Minha História', 14, 13.860000000000001),\n", " ('Misplaced Childhood', 10, 9.9),\n", " (\"Monteverdi: L'Orfeo\", 1, 0.99),\n", " ('Morning Dance', 9, 8.91),\n", " ('Motley Crue Greatest Hits', 17, 16.830000000000002),\n", " ('Mozart Gala: Famous Arias', 1, 0.99),\n", " ('Mozart: Chamber Music', 1, 0.99),\n", " ('Mozart: Symphonies Nos. 40 & 41', 1, 0.99),\n", " ('Mozart: Wind Concertos', 1, 0.99),\n", " ('Muso Ko', 2, 1.98),\n", " ('My Generation - The Very Best Of The Who', 20, 19.799999999999997),\n", " ('My Way: The Best Of Frank Sinatra [Disc 1]', 24, 23.75999999999999),\n", " ('Na Pista', 10, 9.9),\n", " ('Nevermind', 12, 11.88),\n", " ('New Adventures In Hi-Fi', 14, 13.860000000000001),\n", " ('News Of The World', 11, 10.89),\n", " ('Nielsen: The Six Symphonies', 1, 0.99),\n", " ('No More Tears (Remastered)', 2, 1.98),\n", " ('No Prayer For The Dying', 10, 9.9),\n", " ('No Security', 14, 13.860000000000001),\n", " ('O Samba Poconé', 11, 10.89),\n", " ('Olodum', 14, 13.860000000000001),\n", " ('One By One', 11, 10.89),\n", " ('Original Soundtracks 1', 14, 13.860000000000001),\n", " ('Os Cães Ladram Mas A Caravana Não Pára', 16, 15.840000000000002),\n", " ('Out Of Exile', 12, 11.88),\n", " ('Out Of Time', 11, 10.89),\n", " ('Outbreak', 9, 8.91),\n", " ('Pachelbel: Canon & Gigue', 1, 0.99),\n", " ('Palestrina: Missa Papae Marcelli & Allegri: Miserere', 1, 0.99),\n", " (\"Pavarotti's Opera Made Easy\", 1, 0.99),\n", " ('Pearl Jam', 13, 12.870000000000001),\n", " ('Physical Graffiti [Disc 1]', 6, 5.94),\n", " ('Physical Graffiti [Disc 2]', 9, 8.91),\n", " ('Piece Of Mind', 9, 8.91),\n", " ('Plays Metallica By Four Cellos', 8, 7.920000000000001),\n", " ('Pop', 12, 11.88),\n", " ('Powerslave', 8, 7.920000000000001),\n", " ('Prenda Minha', 18, 17.82),\n", " ('Presence', 7, 6.930000000000001),\n", " ('Prokofiev: Romeo & Juliet', 1, 0.99),\n", " ('Prokofiev: Symphony No.1', 1, 0.99),\n", " ('Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 1, 0.99),\n", " ('Puccini: Madama Butterfly - Highlights', 1, 0.99),\n", " ('Purcell: Music for the Queen Mary', 1, 0.99),\n", " ('Purcell: The Fairy Queen', 1, 0.99),\n", " ('Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]',\n", " 18,\n", " 17.82),\n", " ('Purpendicular', 12, 11.88),\n", " ('Quanta Gente Veio Ver (Live)', 15, 14.850000000000001),\n", " ('Quanta Gente Veio ver--Bônus De Carnaval', 3, 2.9699999999999998),\n", " ('Quiet Songs', 2, 1.98),\n", " ('Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro',\n", " 17,\n", " 16.830000000000002),\n", " ('Rattle And Hum', 17, 16.830000000000002),\n", " ('Raul Seixas', 14, 13.860000000000001),\n", " ('ReLoad', 13, 12.870000000000001),\n", " ('Realize', 2, 1.98),\n", " ('Respighi:Pines of Rome', 1, 0.99),\n", " ('Restless and Wild', 3, 2.9699999999999998),\n", " ('Retrospective I (1974-1980)', 14, 13.860000000000001),\n", " ('Revelations', 14, 13.860000000000001),\n", " ('Ride The Lightning', 8, 7.920000000000001),\n", " ('Riot Act', 15, 14.850000000000001),\n", " ('Rock In Rio [CD1]', 10, 9.9),\n", " ('Rock In Rio [CD2]', 9, 8.91),\n", " ('Roda De Funk', 16, 15.840000000000002),\n", " ('Rotten Apples: Greatest Hits', 18, 17.82),\n", " ('SCRIABIN: Vers la flamme', 1, 0.99),\n", " ('Sambas De Enredo 2001', 14, 13.860000000000001),\n", " ('Santana - As Years Go By', 8, 7.920000000000001),\n", " ('Santana Live', 6, 5.94),\n", " ('Scheherazade', 1, 0.99),\n", " (\"Schubert: The Late String Quartets & String Quintet (3 CD's)\", 1, 0.99),\n", " ('Seek And Shall Find: More Of The Best (1963-1981)', 18, 17.82),\n", " ('Serie Sem Limite (Disc 1)', 15, 14.850000000000001),\n", " ('Serie Sem Limite (Disc 2)', 15, 14.850000000000001),\n", " ('Seventh Son of a Seventh Son', 8, 7.920000000000001),\n", " ('Sex Machine', 20, 19.799999999999997),\n", " ('Sibelius: Finlandia', 1, 0.99),\n", " ('Sir Neville Marriner: A Celebration', 1, 0.99),\n", " ('Slaves And Masters', 9, 8.91),\n", " ('Somewhere in Time', 8, 7.920000000000001),\n", " ('South American Getaway', 1, 0.99),\n", " ('Sozinho Remix Ao Vivo', 3, 2.9699999999999998),\n", " ('Speak of the Devil', 12, 11.88),\n", " ('St. Anger', 11, 10.89),\n", " ('Stormbringer', 9, 8.91),\n", " ('Strauss: Waltzes', 1, 0.99),\n", " ('Supernatural', 13, 12.870000000000001),\n", " ('Surfing with the Alien (Remastered)', 10, 9.9),\n", " ('Synkronized', 11, 10.89),\n", " ('Szymanowski: Piano Works, Vol. 1', 1, 0.99),\n", " ('Tangents', 15, 14.850000000000001),\n", " (\"Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington's Victory\",\n", " 1,\n", " 0.99),\n", " ('Tchaikovsky: The Nutcracker', 1, 0.99),\n", " ('Temple of the Dog', 10, 9.9),\n", " ('Ten', 11, 10.89),\n", " ('The Battle Rages On', 10, 9.9),\n", " ('The Beast Live', 10, 9.9),\n", " ('The Best Of 1980-1990', 14, 13.860000000000001),\n", " ('The Best Of Billy Cobham', 8, 7.920000000000001),\n", " ('The Best Of Buddy Guy - The Millenium Collection', 11, 10.89),\n", " ('The Best Of Men At Work', 10, 9.9),\n", " ('The Best Of R.E.M.: The IRS Years', 16, 15.840000000000002),\n", " ('The Best Of Van Halen, Vol. I', 17, 16.830000000000002),\n", " ('The Best of Beethoven', 1, 0.99),\n", " ('The Best of Ed Motta', 14, 13.860000000000001),\n", " ('The Colour And The Shape', 13, 12.870000000000001),\n", " ('The Cream Of Clapton', 18, 17.82),\n", " ('The Doors', 11, 10.89),\n", " ('The Essential Miles Davis [Disc 1]', 13, 12.870000000000001),\n", " ('The Essential Miles Davis [Disc 2]', 10, 9.9),\n", " ('The Final Concerts (Disc 2)', 4, 3.96),\n", " ('The Last Night of the Proms', 1, 0.99),\n", " ('The Number of The Beast', 8, 7.920000000000001),\n", " ('The Office, Season 1', 6, 11.94),\n", " ('The Office, Season 2', 22, 43.78),\n", " ('The Office, Season 3', 25, 49.75000000000001),\n", " ('The Police Greatest Hits', 14, 13.860000000000001),\n", " ('The Real Thing', 11, 10.89),\n", " ('The Return Of The Space Cowboy', 11, 10.89),\n", " ('The Singles', 18, 17.82),\n", " ('The Song Remains The Same (Disc 1)', 5, 4.95),\n", " ('The Song Remains The Same (Disc 2)', 4, 3.96),\n", " ('The Ultimate Relexation Album', 1, 0.99),\n", " ('The World of Classical Favourites', 2, 1.98),\n", " ('The X Factor', 11, 10.89),\n", " ('Transmission', 11, 10.89),\n", " ('Tribute', 14, 13.860000000000001),\n", " ('UB40 The Best Of - Volume Two [UK]', 14, 13.860000000000001),\n", " ('Un-Led-Ed', 1, 0.99),\n", " ('Unplugged', 30, 29.69999999999998),\n", " ('Unplugged [Live]', 15, 14.850000000000001),\n", " (\"Up An' Atom\", 22, 21.779999999999994),\n", " ('Use Your Illusion I', 16, 15.840000000000002),\n", " ('Use Your Illusion II', 14, 13.860000000000001),\n", " ('Van Halen', 11, 10.89),\n", " ('Van Halen III', 12, 11.88),\n", " (\"Vault: Def Leppard's Greatest Hits\", 16, 15.840000000000002),\n", " ('Vinicius De Moraes', 15, 14.850000000000001),\n", " ('Vinícius De Moraes - Sem Limite', 15, 14.850000000000001),\n", " ('Virtual XI', 8, 7.920000000000001),\n", " ('Vivaldi: The Four Seasons', 1, 0.99),\n", " ('Volume Dois', 16, 15.840000000000002),\n", " ('Voodoo Lounge', 15, 14.850000000000001),\n", " ('Vozes do MPB', 14, 13.860000000000001),\n", " ('Vs.', 12, 11.88),\n", " ('Wagner: Favourite Overtures', 1, 0.99),\n", " ('Walking Into Clarksdale', 12, 11.88),\n", " ('War', 10, 9.9),\n", " ('Warner 25 Anos', 14, 13.860000000000001),\n", " ('Weill: The Seven Deadly Sins', 1, 0.99),\n", " ('Worlds', 1, 0.99),\n", " ('Zooropa', 10, 9.9),\n", " ('[1997] Black Light Syndrome', 7, 6.930000000000001)]" ] }, "metadata": { "tags": [] }, "execution_count": 15 } ] }, { "cell_type": "markdown", "metadata": { "id": "cWIm_B6UtaT-", "colab_type": "text" }, "source": [ "## Modifying Data" ] }, { "cell_type": "markdown", "metadata": { "id": "nDlhEVbFtaT_", "colab_type": "text" }, "source": [ "Many times we want to create tables and add some data as we go along. The instructions INSERT INTO allow for easy insertion of new cases into our dataset. Let's start by creating a new table out of our results." ] }, { "cell_type": "code", "metadata": { "id": "qoBgsMBPtaT_", "colab_type": "code", "colab": {} }, "source": [ "query = \"CREATE TEMPORARY TABLE AlbumStats AS SELECT Title, COUNT(*) AS NrSongs, SUM(unitprice) AS TotalPrice FROM AlbumSongs \"\n", "query += \"GROUP BY Title\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "jDQHo_1ctaUB", "colab_type": "text" }, "source": [ "And now, let's add the album \"MANG3073\", that comes with 20 songs and costs £11.99 into our temporary table." ] }, { "cell_type": "code", "metadata": { "id": "2ye_2_48taUC", "colab_type": "code", "colab": {} }, "source": [ "query = \"INSERT INTO AlbumStats (Title, NrSongs, TotalPrice) VALUES ('MANG3073', 20, 11.99)\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "scrolled": true, "id": "oVEp-iGftaUD", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 34 }, "outputId": "6f5ebf65-87db-4f4e-d707-b6d72a49dcda" }, "source": [ "query = \"SELECT * FROM AlbumStats WHERE Title = 'MANG3073'\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 19, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[('MANG3073', 20, 11.99), ('MANG3073', 20, 11.99)]" ] }, "metadata": { "tags": [] }, "execution_count": 19 } ] }, { "cell_type": "markdown", "metadata": { "id": "sVUNBw_JtaUG", "colab_type": "text" }, "source": [ "Our album is now available in the database!\n", "\n", "Finally, we can delete elements from tables using a similar syntax as SELECT." ] }, { "cell_type": "code", "metadata": { "id": "pLdo1li0taUG", "colab_type": "code", "colab": {} }, "source": [ "query = \"DELETE FROM AlbumStats WHERE Title = 'MANG3073'\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "id": "TlUoEd4NtaUI", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 34 }, "outputId": "ac4f2583-ba43-4f87-b526-cdb6c46a6721" }, "source": [ "query = \"SELECT * FROM AlbumStats WHERE Title = 'MANG3073'\"\n", "out = conn.execute(query)\n", "out.fetchall()" ], "execution_count": 21, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "[]" ] }, "metadata": { "tags": [] }, "execution_count": 21 } ] }, { "cell_type": "markdown", "metadata": { "id": "tgRCY2y_taUJ", "colab_type": "text" }, "source": [ "And we can even delete whole tables, or columns, with the instruction \"DROP\". For example, we do not need the AlbumSongs table any longer, we can delete it (and free memory) using the following code." ] }, { "cell_type": "code", "metadata": { "id": "ClQMykPDtaUK", "colab_type": "code", "colab": {} }, "source": [ "query = \"DROP TABLE AlbumSongs\"\n", "out = conn.execute(query)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "WBeY6_e4taUM", "colab_type": "text" }, "source": [ "Once you are done working with a database, it is always a good idea to close it." ] }, { "cell_type": "code", "metadata": { "id": "8KizHrigtaUN", "colab_type": "code", "colab": {} }, "source": [ "conn.close()" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "-ARRhcAotaUP", "colab_type": "text" }, "source": [ "## Pandas & Database Connections" ] }, { "cell_type": "markdown", "metadata": { "id": "_uHKNtHktaUP", "colab_type": "text" }, "source": [ "The above is a common way to create databases on-the-fly for applications of any type, or for local preprocessing of data (i.e. loading a CSV and saving it to a more efficient database). The second common usecase is directly preprocess data in the original database, and then import the output as a Pandas dataset.\n", "\n", "For this, we will use the far more advanced [SQLAlchemy library](http://www.sqlalchemy.org/library.html#tutorials), which will allow for complex operations in databases directly from Python.\n", "\n", "This approach is far more common when working over a static, enterprise level, database. A typical pipeline could include:\n", "\n", "1. Create a SQL Alchemy connection to a main server.\n", "2. Create a SQLite database locally, using either SQLite or directly SQLAlchemy.\n", "3. Generate operations over the master database, such that they are outputted into the local database.\n", "4. Import results into a Pandas dataframe.\n", "\n", "SQLAlchemy is a very sophisticated software. We will simply use the connection property of it, but you are invited to learn more about it. For a detailed explanation of why data scientists should know SQLAlchemy, read [this blog post](http://danielweitzenfeld.github.io/passtheroc/blog/2014/10/12/datasci-sqlalchemy/).\n", "\n", "SQLAlchemy comes preinstalled in Colab, and in many images of data-oriented Python services." ] }, { "cell_type": "markdown", "metadata": { "id": "1IOQ7K3DtaUT", "colab_type": "text" }, "source": [ "Now we create a connection to our SQLite Chinook dataset. We start by creating an [Engine](https://docs.sqlalchemy.org/en/13/core/engines.html), which is simply telling SQLAlchemy which database engine and database are we using, and then create a connection to this database." ] }, { "cell_type": "code", "metadata": { "id": "qn3prQbVtaUT", "colab_type": "code", "colab": {} }, "source": [ "# Import the function\n", "from sqlalchemy import create_engine\n", "\n", "# Create the engine. Will look in the folder the notebook is in.\n", "ChinEngine =create_engine('sqlite:///chinook.db')\n", "\n", "# Create the connection which will execute the queries.\n", "conn2 = ChinEngine.connect()" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "IJm9RAqUtaUV", "colab_type": "text" }, "source": [ "And now we can use Pandas to directly run a query and return the output as a dataset. Let's return for example the AlbumSongs dataset to Pandas." ] }, { "cell_type": "code", "metadata": { "id": "mdVAGMu2taUV", "colab_type": "code", "colab": {} }, "source": [ "query = \"SELECT T.trackid, T.name, T.composer, A.title, T.unitprice FROM tracks as T LEFT JOIN Albums as A \"\n", "query += \"ON T.AlbumID = A.AlbumID\"" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "id": "UKcGhYlztaUX", "colab_type": "code", "colab": { "base_uri": "https://localhost:8080/", "height": 1882 }, "outputId": "05610a95-7caf-494d-9f05-f57715a76ed6" }, "source": [ "import pandas as pd\n", "pd.read_sql(query, conn2)" ], "execution_count": 27, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
TrackIdNameComposerTitleUnitPrice
01For Those About To Rock (We Salute You)Angus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
12Balls to the WallNoneBalls to the Wall0.99
23Fast As a SharkF. Baltes, S. Kaufman, U. Dirkscneider & W. Ho...Restless and Wild0.99
34Restless and WildF. Baltes, R.A. Smith-Diesel, S. Kaufman, U. D...Restless and Wild0.99
45Princess of the DawnDeaffy & R.A. Smith-DieselRestless and Wild0.99
56Put The Finger On YouAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
67Let's Get It UpAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
78Inject The VenomAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
89SnowballedAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
910Evil WalksAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
1011C.O.D.Angus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
1112Breaking The RulesAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
1213Night Of The Long KnivesAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
1314SpellboundAngus Young, Malcolm Young, Brian JohnsonFor Those About To Rock We Salute You0.99
1415Go DownAC/DCLet There Be Rock0.99
1516Dog Eat DogAC/DCLet There Be Rock0.99
1617Let There Be RockAC/DCLet There Be Rock0.99
1718Bad Boy BoogieAC/DCLet There Be Rock0.99
1819Problem ChildAC/DCLet There Be Rock0.99
1920OverdoseAC/DCLet There Be Rock0.99
2021Hell Ain't A Bad Place To BeAC/DCLet There Be Rock0.99
2122Whole Lotta RosieAC/DCLet There Be Rock0.99
2223Walk On WaterSteven Tyler, Joe Perry, Jack Blades, Tommy ShawBig Ones0.99
2324Love In An ElevatorSteven Tyler, Joe PerryBig Ones0.99
2425Rag DollSteven Tyler, Joe Perry, Jim Vallance, Holly K...Big Ones0.99
2526What It TakesSteven Tyler, Joe Perry, Desmond ChildBig Ones0.99
2627Dude (Looks Like A Lady)Steven Tyler, Joe Perry, Desmond ChildBig Ones0.99
2728Janie's Got A GunSteven Tyler, Tom HamiltonBig Ones0.99
2829Cryin'Steven Tyler, Joe Perry, Taylor RhodesBig Ones0.99
2930AmazingSteven Tyler, Richie SupaBig Ones0.99
..................
34733474October SongMatt Rowe & Stefan SkarbekFrank0.99
34743475What Is It About MenDelroy \"Chris\" Cooper, Donovan Jackson, Earl C...Frank0.99
34753476Help YourselfFreddy James, Jimmy hogarth & Larry StockFrank0.99
34763477Amy Amy Amy (Outro)Astor Campbell, Delroy \"Chris\" Cooper, Donovan...Frank0.99
34773478SlownessNoneCarried to Dust (Bonus Track Version)0.99
34783479Prometheus Overture, Op. 43Ludwig van BeethovenBeethoven: Symphony No. 6 'Pastoral' Etc.0.99
34793480Sonata for Solo Violin: IV: PrestoBéla BartókBartok: Violin & Viola Concertos0.99
34803481A Midsummer Night's Dream, Op.61 Incidental Mu...NoneMendelssohn: A Midsummer Night's Dream0.99
34813482Suite No. 3 in D, BWV 1068: III. Gavotte I & IIJohann Sebastian BachBach: Orchestral Suites Nos. 1 - 40.99
34823483Concert pour 4 Parties de V**les, H. 545: I. P...Marc-Antoine CharpentierCharpentier: Divertissements, Airs & Concerts0.99
34833484Adios noninoAstor PiazzollaSouth American Getaway0.99
34843485Symphony No. 3 Op. 36 for Orchestra and Sopran...Henryk GóreckiGórecki: Symphony No. 30.99
34853486Act IV, SymphonyHenry PurcellPurcell: The Fairy Queen0.99
348634873 Gymnopédies: No.1 - Lent Et Grave, No.3 - Le...Erik SatieThe Ultimate Relexation Album0.99
34873488Music for the Funeral of Queen Mary: VI. \"Thou...Henry PurcellPurcell: Music for the Queen Mary0.99
34883489Symphony No. 2: III. Allegro vivaceKurt WeillWeill: The Seven Deadly Sins0.99
34893490Partita in E Major, BWV 1006A: I. PreludeJohann Sebastian BachJ.S. Bach: Chaconne, Suite in E Minor, Partita...0.99
34903491Le Sacre Du Printemps: I.iv. Spring RoundsIgor StravinskyProkofiev: Symphony No.5 & Stravinksy: Le Sacr...0.99
34913492Sing JoyfullyWilliam ByrdEnglish Renaissance0.99
34923493Metopes, Op. 29: CalypsoKarol SzymanowskiSzymanowski: Piano Works, Vol. 10.99
34933494Symphony No. 2, Op. 16 - \"The Four Temperamen...Carl NielsenNielsen: The Six Symphonies0.99
3494349524 Caprices, Op. 1, No. 24, for Solo Violin, i...Niccolò PaganiniGreat Recordings of the Century: Paganini's 24...0.99
34953496Étude 1, In C Major - Preludio (Presto) - LisztNoneLiszt - 12 Études D'Execution Transcendante0.99
34963497Erlkonig, D.328NoneGreat Recordings of the Century - Shubert: Sch...0.99
34973498Concerto for Violin, Strings and Continuo in G...Pietro Antonio LocatelliLocatelli: Concertos for Violin, Strings and C...0.99
34983499Pini Di Roma (Pinien Von Rom) \\ I Pini Della V...NoneRespighi:Pines of Rome0.99
34993500String Quartet No. 12 in C Minor, D. 703 \"Quar...Franz SchubertSchubert: The Late String Quartets & String Qu...0.99
35003501L'orfeo, Act 3, Sinfonia (Orchestra)Claudio MonteverdiMonteverdi: L'Orfeo0.99
35013502Quintet for Horn, Violin, 2 Violas, and Cello ...Wolfgang Amadeus MozartMozart: Chamber Music0.99
35023503KoyaanisqatsiPhilip GlassKoyaanisqatsi (Soundtrack from the Motion Pict...0.99
\n", "

3503 rows × 5 columns

\n", "
" ], "text/plain": [ " TrackId Name \\\n", "0 1 For Those About To Rock (We Salute You) \n", "1 2 Balls to the Wall \n", "2 3 Fast As a Shark \n", "3 4 Restless and Wild \n", "4 5 Princess of the Dawn \n", "5 6 Put The Finger On You \n", "6 7 Let's Get It Up \n", "7 8 Inject The Venom \n", "8 9 Snowballed \n", "9 10 Evil Walks \n", "10 11 C.O.D. \n", "11 12 Breaking The Rules \n", "12 13 Night Of The Long Knives \n", "13 14 Spellbound \n", "14 15 Go Down \n", "15 16 Dog Eat Dog \n", "16 17 Let There Be Rock \n", "17 18 Bad Boy Boogie \n", "18 19 Problem Child \n", "19 20 Overdose \n", "20 21 Hell Ain't A Bad Place To Be \n", "21 22 Whole Lotta Rosie \n", "22 23 Walk On Water \n", "23 24 Love In An Elevator \n", "24 25 Rag Doll \n", "25 26 What It Takes \n", "26 27 Dude (Looks Like A Lady) \n", "27 28 Janie's Got A Gun \n", "28 29 Cryin' \n", "29 30 Amazing \n", "... ... ... \n", "3473 3474 October Song \n", "3474 3475 What Is It About Men \n", "3475 3476 Help Yourself \n", "3476 3477 Amy Amy Amy (Outro) \n", "3477 3478 Slowness \n", "3478 3479 Prometheus Overture, Op. 43 \n", "3479 3480 Sonata for Solo Violin: IV: Presto \n", "3480 3481 A Midsummer Night's Dream, Op.61 Incidental Mu... \n", "3481 3482 Suite No. 3 in D, BWV 1068: III. Gavotte I & II \n", "3482 3483 Concert pour 4 Parties de V**les, H. 545: I. P... \n", "3483 3484 Adios nonino \n", "3484 3485 Symphony No. 3 Op. 36 for Orchestra and Sopran... \n", "3485 3486 Act IV, Symphony \n", "3486 3487 3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Le... \n", "3487 3488 Music for the Funeral of Queen Mary: VI. \"Thou... \n", "3488 3489 Symphony No. 2: III. Allegro vivace \n", "3489 3490 Partita in E Major, BWV 1006A: I. Prelude \n", "3490 3491 Le Sacre Du Printemps: I.iv. Spring Rounds \n", "3491 3492 Sing Joyfully \n", "3492 3493 Metopes, Op. 29: Calypso \n", "3493 3494 Symphony No. 2, Op. 16 - \"The Four Temperamen... \n", "3494 3495 24 Caprices, Op. 1, No. 24, for Solo Violin, i... \n", "3495 3496 Étude 1, In C Major - Preludio (Presto) - Liszt \n", "3496 3497 Erlkonig, D.328 \n", "3497 3498 Concerto for Violin, Strings and Continuo in G... \n", "3498 3499 Pini Di Roma (Pinien Von Rom) \\ I Pini Della V... \n", "3499 3500 String Quartet No. 12 in C Minor, D. 703 \"Quar... \n", "3500 3501 L'orfeo, Act 3, Sinfonia (Orchestra) \n", "3501 3502 Quintet for Horn, Violin, 2 Violas, and Cello ... \n", "3502 3503 Koyaanisqatsi \n", "\n", " Composer \\\n", "0 Angus Young, Malcolm Young, Brian Johnson \n", "1 None \n", "2 F. Baltes, S. Kaufman, U. Dirkscneider & W. Ho... \n", "3 F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. D... \n", "4 Deaffy & R.A. Smith-Diesel \n", "5 Angus Young, Malcolm Young, Brian Johnson \n", "6 Angus Young, Malcolm Young, Brian Johnson \n", "7 Angus Young, Malcolm Young, Brian Johnson \n", "8 Angus Young, Malcolm Young, Brian Johnson \n", "9 Angus Young, Malcolm Young, Brian Johnson \n", "10 Angus Young, Malcolm Young, Brian Johnson \n", "11 Angus Young, Malcolm Young, Brian Johnson \n", "12 Angus Young, Malcolm Young, Brian Johnson \n", "13 Angus Young, Malcolm Young, Brian Johnson \n", "14 AC/DC \n", "15 AC/DC \n", "16 AC/DC \n", "17 AC/DC \n", "18 AC/DC \n", "19 AC/DC \n", "20 AC/DC \n", "21 AC/DC \n", "22 Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw \n", "23 Steven Tyler, Joe Perry \n", "24 Steven Tyler, Joe Perry, Jim Vallance, Holly K... \n", "25 Steven Tyler, Joe Perry, Desmond Child \n", "26 Steven Tyler, Joe Perry, Desmond Child \n", "27 Steven Tyler, Tom Hamilton \n", "28 Steven Tyler, Joe Perry, Taylor Rhodes \n", "29 Steven Tyler, Richie Supa \n", "... ... \n", "3473 Matt Rowe & Stefan Skarbek \n", "3474 Delroy \"Chris\" Cooper, Donovan Jackson, Earl C... \n", "3475 Freddy James, Jimmy hogarth & Larry Stock \n", "3476 Astor Campbell, Delroy \"Chris\" Cooper, Donovan... \n", "3477 None \n", "3478 Ludwig van Beethoven \n", "3479 Béla Bartók \n", "3480 None \n", "3481 Johann Sebastian Bach \n", "3482 Marc-Antoine Charpentier \n", "3483 Astor Piazzolla \n", "3484 Henryk Górecki \n", "3485 Henry Purcell \n", "3486 Erik Satie \n", "3487 Henry Purcell \n", "3488 Kurt Weill \n", "3489 Johann Sebastian Bach \n", "3490 Igor Stravinsky \n", "3491 William Byrd \n", "3492 Karol Szymanowski \n", "3493 Carl Nielsen \n", "3494 Niccolò Paganini \n", "3495 None \n", "3496 None \n", "3497 Pietro Antonio Locatelli \n", "3498 None \n", "3499 Franz Schubert \n", "3500 Claudio Monteverdi \n", "3501 Wolfgang Amadeus Mozart \n", "3502 Philip Glass \n", "\n", " Title UnitPrice \n", "0 For Those About To Rock We Salute You 0.99 \n", "1 Balls to the Wall 0.99 \n", "2 Restless and Wild 0.99 \n", "3 Restless and Wild 0.99 \n", "4 Restless and Wild 0.99 \n", "5 For Those About To Rock We Salute You 0.99 \n", "6 For Those About To Rock We Salute You 0.99 \n", "7 For Those About To Rock We Salute You 0.99 \n", "8 For Those About To Rock We Salute You 0.99 \n", "9 For Those About To Rock We Salute You 0.99 \n", "10 For Those About To Rock We Salute You 0.99 \n", "11 For Those About To Rock We Salute You 0.99 \n", "12 For Those About To Rock We Salute You 0.99 \n", "13 For Those About To Rock We Salute You 0.99 \n", "14 Let There Be Rock 0.99 \n", "15 Let There Be Rock 0.99 \n", "16 Let There Be Rock 0.99 \n", "17 Let There Be Rock 0.99 \n", "18 Let There Be Rock 0.99 \n", "19 Let There Be Rock 0.99 \n", "20 Let There Be Rock 0.99 \n", "21 Let There Be Rock 0.99 \n", "22 Big Ones 0.99 \n", "23 Big Ones 0.99 \n", "24 Big Ones 0.99 \n", "25 Big Ones 0.99 \n", "26 Big Ones 0.99 \n", "27 Big Ones 0.99 \n", "28 Big Ones 0.99 \n", "29 Big Ones 0.99 \n", "... ... ... \n", "3473 Frank 0.99 \n", "3474 Frank 0.99 \n", "3475 Frank 0.99 \n", "3476 Frank 0.99 \n", "3477 Carried to Dust (Bonus Track Version) 0.99 \n", "3478 Beethoven: Symphony No. 6 'Pastoral' Etc. 0.99 \n", "3479 Bartok: Violin & Viola Concertos 0.99 \n", "3480 Mendelssohn: A Midsummer Night's Dream 0.99 \n", "3481 Bach: Orchestral Suites Nos. 1 - 4 0.99 \n", "3482 Charpentier: Divertissements, Airs & Concerts 0.99 \n", "3483 South American Getaway 0.99 \n", "3484 Górecki: Symphony No. 3 0.99 \n", "3485 Purcell: The Fairy Queen 0.99 \n", "3486 The Ultimate Relexation Album 0.99 \n", "3487 Purcell: Music for the Queen Mary 0.99 \n", "3488 Weill: The Seven Deadly Sins 0.99 \n", "3489 J.S. Bach: Chaconne, Suite in E Minor, Partita... 0.99 \n", "3490 Prokofiev: Symphony No.5 & Stravinksy: Le Sacr... 0.99 \n", "3491 English Renaissance 0.99 \n", "3492 Szymanowski: Piano Works, Vol. 1 0.99 \n", "3493 Nielsen: The Six Symphonies 0.99 \n", "3494 Great Recordings of the Century: Paganini's 24... 0.99 \n", "3495 Liszt - 12 Études D'Execution Transcendante 0.99 \n", "3496 Great Recordings of the Century - Shubert: Sch... 0.99 \n", "3497 Locatelli: Concertos for Violin, Strings and C... 0.99 \n", "3498 Respighi:Pines of Rome 0.99 \n", "3499 Schubert: The Late String Quartets & String Qu... 0.99 \n", "3500 Monteverdi: L'Orfeo 0.99 \n", "3501 Mozart: Chamber Music 0.99 \n", "3502 Koyaanisqatsi (Soundtrack from the Motion Pict... 0.99 \n", "\n", "[3503 rows x 5 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 27 } ] }, { "cell_type": "markdown", "metadata": { "id": "If_JMqR5taUZ", "colab_type": "text" }, "source": [ "SQL Alchemy supports directly executing the queries using the *execute* method over the connection, just like SQLite, but its strengths are in the multiple connections it support, and the [Object Relational Mapper](http://docs.sqlalchemy.org/en/latest/orm/), or a way to programatically represent tables as objects. This escapes the objectives of this module, but it can be worth it to learn if you are working with tables directly from Python. We will see more uses of this package next week." ] } ] }