Add CROSS JOIN in queries (#5447)

Added CROSS JOIN type
pull/3534/head^2
VTolmasov 7 months ago committed by GitHub
parent a1ced7573b
commit f8b9d2e271
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/postgresql-dba/content/102-rdbms-concepts/100-object-model/106-queries.md

@ -44,7 +44,7 @@ SELECT COUNT(*) AS user_count, AVG(age) AS average_age FROM users;
### Joins ### Joins
When you want to retrieve related data from multiple tables, you can use a `JOIN` in the query. There are various types of joins available, such as `INNER JOIN`, `LEFT JOIN`, `RIGHT JOIN`, and `FULL OUTER JOIN`. When you want to retrieve related data from multiple tables, you can use a `JOIN` in the query. There are various types of joins available, such as `INNER JOIN`, `LEFT JOIN`, `RIGHT JOIN`, `FULL OUTER JOIN` and `CROSS JOIN`.
Syntax for a simple `INNER JOIN`: Syntax for a simple `INNER JOIN`:

Loading…
Cancel
Save