SQL JOINS Clause Formatting (#6885)

bullet point for each operation to make document more readable
pull/6890/head
Sarkis Kovlekjian 2 months ago committed by GitHub
parent a93ddf3944
commit 17b63fa7a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      src/data/roadmaps/sql/content/joins@4UQQYbjzwVxZOAxBuXKQS.md

@ -1,6 +1,12 @@
# JOINs
SQL `JOINs` are clauses used to combine rows from two or more tables based on a related column between them. They allow retrieval of data from multiple tables in a single query, enabling complex data analysis and reporting. The main types of `JOINs` include `INNER JOIN` (returns matching rows from both tables), `LEFT JOIN` (returns all rows from the left table and matching rows from the right), `RIGHT JOIN` (opposite of `LEFT JOIN`), and `FULL JOIN` (returns all rows when there's a match in either table). `JOINs` are fundamental to relational database operations, facilitating data integration and exploration across related datasets.
SQL `JOINs` are clauses used to combine rows from two or more tables based on a related column between them. They allow retrieval of data from multiple tables in a single query, enabling complex data analysis and reporting. The main types of `JOINs` include:
- `INNER JOIN` (returns matching rows from both tables)
- `LEFT JOIN` (returns all rows from the left table and matching rows from the right)
- `RIGHT JOIN` (opposite of `LEFT JOIN`)
- `FULL JOIN` (returns all rows when there's a match in either table)
`JOINs` are fundamental to relational database operations, facilitating data integration and exploration across related datasets.
Learn more from the following resources:

Loading…
Cancel
Save