Inconsistent capitalisation of literals is considered unidiomatic in sql.
In this example, null and false are in lower-case whereas TRUE is in upper-case.
select
a,
null,
TRUE,
false
from foo
select
a,
NULL,
TRUE,
FALSE
from foo
-- Also good
select
a,
null,
true,
false
from foo