Inner Joins (II)
Here, you'll continue to practice your INNER JOIN skills. We'll use the album
table as last time, but will join it to a new table - artist
- which consists of two columns: artist_id
and name
.
This exercise is part of the course
Introduction to SQL Server
Exercise instructions
- Select the
album_id
andtitle
columns fromalbum
(the main source table name). - Select the
name
column fromartist
and alias it asartist
. - Identify a common column between the
album
andartist
tables and perform an inner join.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Select album_id and title from album, and name from artist
SELECT
___,
___,
___ AS artist
-- Enter the main source table name
FROM ___
-- Perform the inner join
INNER JOIN ___ on ___.___ = ___.artist_id;