Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Files

Latest commit

7c6a93a · May 8, 2022

History

History
34 lines (27 loc) · 430 Bytes

logicalOperatorNewline.md

File metadata and controls

34 lines (27 loc) · 430 Bytes

logicalOperatorNewline

Decides newline placement before or after logical operators (AND, OR, XOR).

Options

  • "before" (default) adds newline before the operator.
  • "after" adds newline after the operator.

before

SELECT
  *
FROM
  persons
WHERE
  age > 10
  AND height < 150
  OR occupation IS NULL

after

SELECT
  *
FROM
  persons
WHERE
  age > 10 AND
  height < 150 OR
  occupation IS NULL