Find Intersecting Data with Postgres’ Inner Join

InstructorBrett Cassette

Share this video with your friends

Send Tweet

You have a table of movies and a table of directors; how can you see which director created each movie? An inner join will link related records so that you can answer questions like these. Inner joins are the most commonly used SQL join, because they only return data that is common in both tables.