DEV Community

Discussion on: Different Types of SQL JOINs

Collapse
 
robertseidler profile image
RobertSeidler • Edited

There is also CROSS JOIN, where every combination of rows from both tables are joined with each other. But I feel like I know, why you left that one of your list. It is a rare occurence (at least for me), that I want all rows of two tables cross joined.

The only case I used it so far, was to join a table with another, that contained only one row.