Please enable JavaScript.
Coggle requires JavaScript to display documents.
SQL JOIN - Coggle Diagram
SQL JOIN
Combine rows from two or more tables, based on a related column between them.
-
-
-
-
LEFT OUTER JOIN
Returns all records from the left table, and the matched records from the right table
-
RIGHT OUTER JOIN
Returns all records from the right table, and the matched records from the left table
-
-
-
-