From 58530b67e85ea5c43da706080ee6a91ec778db62 Mon Sep 17 00:00:00 2001 From: Grishma Patel <74070079+grpatel@users.noreply.github.com> Date: Fri, 26 Apr 2024 10:13:22 -0400 Subject: [PATCH] Remove line breaks --- content/03-types/02-relational/07-what-are-joins.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/03-types/02-relational/07-what-are-joins.mdx b/content/03-types/02-relational/07-what-are-joins.mdx index dc5a37d7..0ff24c6b 100644 --- a/content/03-types/02-relational/07-what-are-joins.mdx +++ b/content/03-types/02-relational/07-what-are-joins.mdx @@ -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)