Skip to content

Instantly share code, notes, and snippets.

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