Skip to content

Instantly share code, notes, and snippets.

@gideondsouza
Created August 31, 2012 11:12
Show Gist options
  • Save gideondsouza/3551544 to your computer and use it in GitHub Desktop.
Save gideondsouza/3551544 to your computer and use it in GitHub Desktop.
SELECT m.title
FROM
movie m
JOIN casting c ON
m.id = c.movieid AND
c.ord <> 1
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