From 146022d1ed30da3f95c2e1e483124b6b6ec005ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Po=C3=A7as?= <109179822+zorkpt@users.noreply.github.com> Date: Thu, 17 Aug 2023 02:56:22 +0100 Subject: [PATCH] Removed duplicate sentence (#4325) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removed the sentence: "JOIN Queries Absolutely, here’s a brief summary about SQL JOIN Queries:" It's the same information as the sentence below and it doesn't give the impression it's answering anything. --- src/data/roadmaps/sql/content/106-join-queries/index.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/data/roadmaps/sql/content/106-join-queries/index.md b/src/data/roadmaps/sql/content/106-join-queries/index.md index 9e9f6f778..ea2ad3e00 100644 --- a/src/data/roadmaps/sql/content/106-join-queries/index.md +++ b/src/data/roadmaps/sql/content/106-join-queries/index.md @@ -1,7 +1,3 @@ -# JOIN Queries - -Absolutely, here's a brief summary about SQL JOIN Queries: - # SQL JOIN Queries JOIN clause is used to combine rows from two or more tables, based on a related column between them. @@ -59,4 +55,4 @@ WHERE A.CustomerID <> B.CustomerID AND A.City = B.City; ``` -**Note**: JOINS can be used with SELECT, UPDATE, and DELETE statements. \ No newline at end of file +**Note**: JOINS can be used with SELECT, UPDATE, and DELETE statements.