Skip to content

Instantly share code, notes, and snippets.

@databraineo
Created August 16, 2019 08:21
Show Gist options
  • Save databraineo/376a10230cee9b25cb7b8454aa388242 to your computer and use it in GitHub Desktop.
Save databraineo/376a10230cee9b25cb7b8454aa388242 to your computer and use it in GitHub Desktop.
Code examples for SQL 1x1 blog-article - 14
SELECT
TrackId,
Name AS Trackname,
Track.AlbumId,
Title AS Albumname
FROM Track
INNER JOIN Album ON Track.AlbumId=Album.AlbumId;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment