You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT actor.name
FROM actor
JOIN casting ON casting.actorid = actor.id
WHERE casting.movieid = (
SELECT id FROM movie
WHERE title = 'Casablanca' AND yr = 1942
)
movieid should be 132689
or another method:
SELECT actor.name
FROM actor
JOIN casting ON casting.actorid = actor.id
WHERE casting.movieid = (
SELECT id FROM movie
WHERE title = 'Casablanca' AND yr = 1942
)