Skip to content

Commit

Permalink
Remove line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
grpatel authored Apr 26, 2024
1 parent 424f13c commit 58530b6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions content/03-types/02-relational/07-what-are-joins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,8 @@ t1.r3 + t2.r3

> **Note:** In MySQL, the concept of a `CROSS JOIN` is combined with the `INNER JOIN`. Read more in the [here](https://www.prisma.io/dataguide/mysql/reading-and-querying-data/joining-tables#different-types-of-joins).

With a `CROSS JOIN`, each row from the `customers` table is combined with each row from the `orders` table, resulting in a total of 9 rows. However, we won’t show the result table as a `CROSS JOIN` wouldn’t accurately pair the customer with their respective orders.


To learn more about database-specific details of JOIN operations, check out these additional pages in the data guide:
- [JOINs in PostgreSQL](https://www.prisma.io/dataguide/postgresql/reading-and-querying-data/joining-tables)
- [JOINs in MySQL](https://www.prisma.io/dataguide/mysql/reading-and-querying-data/joining-tables)
Expand Down

0 comments on commit 58530b6

Please sign in to comment.