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 0ff24c6b..b8cadbfd 100644 --- a/content/03-types/02-relational/07-what-are-joins.mdx +++ b/content/03-types/02-relational/07-what-are-joins.mdx @@ -247,6 +247,7 @@ LEFT JOIN LATERAL (SELECT * FROM orders WHERE orders.customer_id = customers.customer_id ) AS ALIAS ON TRUE; +``` Here is the result table after using a `LATERAL JOIN`: