Reworked all the SQL statements to be uppercase

This commit is contained in:
Nanne Baars
2019-09-24 16:50:04 +02:00
committed by Nanne Baars
parent 9fdbbf69d6
commit a0933d83d5
14 changed files with 41 additions and 38 deletions

View File

@ -34,7 +34,7 @@ This means an `orderExpression` can be a `selectExpression` which can be a funct
a `case` statement we might be able to ask the database some questions, like:
----
select * from users order by (case when (true) then lastname else firstname)
SELECT * FROM USERS ORDER BY (CASE WHEN (TRUE) THEN LASTNAME ELSE FIRSTNAME)
----
So we can substitute any kind of boolean operation in the `when(....)` part. The statement will just work because