Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 423 Bytes

complement_outer_keyword.md

File metadata and controls

36 lines (28 loc) · 423 Bytes

complement_outer_keyword

Complement the optional OUTER. Specifically, RIGHT OUTER JOIN, LEFT OUTER JOIN, and FULL OUTER JOIN.

Options

  • true (default): If an optional OUTER is omitted, complement it.
  • false : Do not complement OUTER.

Example

before:

SELECT
	*
FROM
	T1
LEFT JOIN
	T2
ON
	T1.NUM	=	T2.NUM

result:

SELECT
	*
FROM
	T1
LEFT OUTER JOIN
	T2
ON
	T1.NUM	=	T2.NUM