Logo
Pattern

Discover published sets by community

Explore tens of thousands of sets crafted by our community.

SQL JOIN Clauses

5

Flashcards

0/5

Still learning
StarStarStarStar

LEFT (OUTER) JOIN

StarStarStarStar

Returns all records from the left table, and the matched records from the right table. If there is no match, the result is NULL on the right side.

StarStarStarStar

INNER JOIN

StarStarStarStar

Combines rows from two or more tables based on a related column between them. Returns rows that have matching values in both tables.

StarStarStarStar

RIGHT (OUTER) JOIN

StarStarStarStar

Returns all records from the right table, and the matched records from the left table. If there is no match, the result is NULL on the left side.

StarStarStarStar

FULL (OUTER) JOIN

StarStarStarStar

Combines LEFT and RIGHT OUTER JOINS. It returns all records when there is a match in either left or right table. Rows that do not have a match in both tables will have NULL values for the columns from the other table.

StarStarStarStar

CROSS JOIN

StarStarStarStar

Returns the Cartesian product of the rows from the tables in the join. In other words, it combines each row from the first table with each row from the second table.

Know
0
Still learning
Click to flip
Know
0
Logo

© Hypatia.Tech. 2024 All rights reserved.