clean
All checks were successful
Build Quartz Notes / build (push) Successful in 33s

This commit is contained in:
2026-06-02 14:26:45 +01:00
parent cfa8867ca1
commit 6e65fa187c
73 changed files with 1331 additions and 190 deletions

View File

@@ -0,0 +1,10 @@
# The SQL JOIN Clause
The JOIN clause is used to combine rows from two or more tables, based on a related column between them.
Here are the different types of JOINs in SQL:
****(INNER) JOIN****: Returns only rows that have matching values in both tables
****LEFT (OUTER) JOIN****: Returns all rows from the left table, and only the matched rows from the right table
****RIGHT (OUTER) JOIN****: Returns all rows from the right table, and only the matched rows from the left table
****FULL (OUTER) JOIN****: Returns all rows when there is a match in either the left or right table