mirror of
https://github.com/treffynnon/sqlstyle.guide.git
synced 2025-03-09 12:49:51 -05:00
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
This commit is contained in:
parent
91e61111ba
commit
87260aebf3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue