Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 314 Bytes

complement_column_as_keyword.md

File metadata and controls

28 lines (20 loc) · 314 Bytes

complement_column_as_keyword

Complement AS in column aliases.

Options

  • true (default): Complement column alias AS if it is omitted.
  • false : Do not complement column alias AS.

Example

before:

SELECT
	COLUMN1	COL1
FROM
	TBL

after:

SELECT
	COLUMN1	AS	COL1
FROM
	TBL