Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 509 Bytes

keyword_case.md

File metadata and controls

55 lines (43 loc) · 509 Bytes

keyword_case

Unify the case of keywords.

Options

  • "upper" (default): Unify keywords with upper cases.
  • "lower": Unify keywords with lower cases.
  • "preserve": Preserves the original case of keywords.

Example

before:

Select
	*
FroM
	DEPARTMENT
wheRE
	DEPT_NO	=	10

upper

SELECT
	*
FROM
	DEPARTMENT
WHERE
	DEPT_NO	=	10

lower

select
	*
from
	DEPARTMENT
where
	DEPT_NO	=	10

preserve

Select
	*
FroM
	DEPARTMENT
wheRE
	DEPT_NO	=	10