From 2a07b7b0294ae3421d29b376fe84026110a99a2e Mon Sep 17 00:00:00 2001
From: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com>
Date: Fri, 10 Nov 2023 15:27:29 -0800
Subject: [PATCH] Update website/docs/sql-reference/joins/sql-left-join.md
---
website/docs/sql-reference/joins/sql-left-join.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/docs/sql-reference/joins/sql-left-join.md b/website/docs/sql-reference/joins/sql-left-join.md
index 24fbb2bfa0c..914f83bb7e3 100644
--- a/website/docs/sql-reference/joins/sql-left-join.md
+++ b/website/docs/sql-reference/joins/sql-left-join.md
@@ -73,4 +73,4 @@ Left joins are a fundamental in data modeling and analytics engineering work—t
Something to note if you use left joins: if there are multiple records for an individual key in the left join database object, be aware that duplicates can potentially be introduced in the final query result. This is where dbt tests, such as testing for uniqueness and [equal row count](https://github.com/dbt-labs/dbt-utils#equal_rowcount-source) across upstream source tables and downstream child models, can help you identify faulty data modeling logic and improve data quality.
:::
-Where you will not (and should not) see left joins is in [staging models](https://docs.getdbt.com/best-practices/how-we-structure/2-staging) that are used to clean and prep raw source data for analytics uses. Any joins in your dbt projects should happen further downstream in [intermediate](https://docs.getdbt.com/best-practices/how-we-structure/3-intermediate) and [mart models](https://docs.getdbt.com/best-practices/how-we-structure/4-marts) to improve modularity and cleanliness.
+Where you will not (and should not) see left joins is in [staging models](/best-practices/how-we-structure/2-staging) that are used to clean and prep raw source data for analytics uses. Any joins in your dbt projects should happen further downstream in [intermediate](/best-practices/how-we-structure/3-intermediate) and [mart models](/best-practices/how-we-structure/4-marts) to improve modularity and cleanliness.