Skip to content

Instantly share code, notes, and snippets.

@gideondsouza
Created August 31, 2012 11:10
Show Gist options
  • Save gideondsouza/3551529 to your computer and use it in GitHub Desktop.
Save gideondsouza/3551529 to your computer and use it in GitHub Desktop.
SELECT a.Name
FROM
casting c
JOIN actor a ON
c.actorid = a.id
Where movieid IN
(SELECT id FROM movie WHERE title = 'Alien');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment