Write a query to join artist and album on the common property artist_id. Notice that 3, Bill Evans won't appear in the results.
artist
album
artist_id
3, Bill Evans
Make sure to pick INNER JOIN album followed by ON artist.artist_id and then =, album.artist_id.
INNER JOIN album
ON artist.artist_id
=
album.artist_id