Created
August 31, 2012 11:10
-
-
Save gideondsouza/3551529 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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