We're sunsetting PodQuest on 2025-07-28. Thank you for your support!
Export Podcast Subscriptions
cover of episode Database Joins

Database Joins

2014/5/28
logo of podcast How to Program with Java Podcast

How to Program with Java Podcast

Shownotes Transcript

There are three categories of joins that you can make use of in SQL:

  •   Inner Join
  •   Outer Join
  •   Cross Join

 

But before we dive into the categories of joins, we first need to have an understanding of what a join really is.

Joins are used in SQL to bring together all the relevant data from multiple database tables.  Remember that we've broken data down into multiple tables and established relationships between the tables.

 

... More via show notes: http://howtoprogramwithjava.com/session46