Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 7_more_join_operations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ FROM movie
JOIN casting
ON movie.id = casting.movieid
WHERE movie.yr = 1978
GROUP BY movie.id
GROUP BY movie.title
ORDER BY COUNT(*) DESC

-- # 16. List all the people who have worked with 'Art Garfunkel'.
Expand All @@ -143,4 +143,4 @@ SELECT a.name
JOIN casting
ON casting.actorid = actor.id
WHERE actor.name != 'Art Garfunkel') as a
ON m.id = a.movieid;
ON m.id = a.movieid;