mirror of
https://github.com/treffynnon/sqlstyle.guide.git
synced 2025-03-09 12:49:51 -05:00
Multi ON clause correction
Corrected the Multiple ON clause example to have the indenting correspond with the description given in Trent's merged pull request
This commit is contained in:
parent
117a1243f7
commit
8b33cc6a9a
1 changed files with 2 additions and 2 deletions
|
@ -244,8 +244,8 @@ FROM
|
|||
INNER JOIN
|
||||
BIKES AS B
|
||||
ON R.bike_vin_num = B.vin_num
|
||||
AND
|
||||
B.engines > 2
|
||||
AND
|
||||
B.engines > 2
|
||||
INNER JOIN
|
||||
CREW AS C
|
||||
ON R.crew_chief_last_name = C.last_name
|
||||
|
|
Loading…
Reference in a new issue