Remove old note about ON clause ordering (#186)

#156 fixed the issue
This commit is contained in:
Mitchell Vitez 2020-05-26 15:28:19 -05:00 committed by GitHub
parent 2cd6460260
commit 9a4813d422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,8 +195,6 @@ INNER JOIN Follow ON P1.id = Follow.follower
INNER JOIN Person AS P2 ON P2.id = Follow.followed
```
Note carefully that the order of the ON clauses is reversed! You're required to write your `on`s in reverse order because that helps composability (see the documentation of `on` for more details).
## Update and Delete
```haskell