From 87260aebf3916800a4c613363960f65711719e98 Mon Sep 17 00:00:00 2001 From: Matt Roy Lloyd Date: Thu, 26 Oct 2017 14:16:32 +0100 Subject: [PATCH] Align join as according to documentation below Under the join section we say we align to the right of the river, but that isn't the case here --- _includes/sqlstyle.guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/sqlstyle.guide.md b/_includes/sqlstyle.guide.md index 5a184f0..20de83d 100644 --- a/_includes/sqlstyle.guide.md +++ b/_includes/sqlstyle.guide.md @@ -112,8 +112,8 @@ SELECT first_name ```sql SELECT first_name AS fn FROM staff AS s1 - JOIN students AS s2 - ON s2.mentor_id = s1.staff_num; + JOIN students AS s2 + ON s2.mentor_id = s1.staff_num; ``` ```sql SELECT SUM(s.monitor_tally) AS monitor_total