Skip to content

This is to help those who are stuck in week 3's assignment of the Course "Using Database with Python" by Dr. Chuck

Notifications You must be signed in to change notification settings

tauhiddewan/Basics-sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Musical-Track-Database

This is to help those who are stuck in week 3's assignment of the Course "Using Database with Python" by Dr. Chuck.

N.B: You have to modify the given SQL to get the expected result. Enter the following SQL command to get the expected result:

SELECT Track.title,Artist.name,Album.title,Genre.name FROM Artist JOIN Album JOIN Genre JOIN Track ON Artist.id = Album.artist_id and Album.id = Track.album_id and Genre.id = Track.genre_id ORDER by Artist.name,Track.title LIMIT 3

About

This is to help those who are stuck in week 3's assignment of the Course "Using Database with Python" by Dr. Chuck

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages