Decides newline placement before or after logical operators (AND, OR, XOR).
"before"
(default) adds newline before the operator."after"
adds newline after the operator.
SELECT
*
FROM
persons
WHERE
age > 10
AND height < 150
OR occupation IS NULL
SELECT
*
FROM
persons
WHERE
age > 10 AND
height < 150 OR
occupation IS NULL