Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 307 Bytes

unify_not_equal.md

File metadata and controls

32 lines (24 loc) · 307 Bytes

unify_not_equal

Convert comparison operator <> to !=.

Options

  • true (default): Convert <> to !=.
  • false : Do not convert <> to !=.

Example

before:

SELECT
	*
FROM
	STUDENTS
WHERE
	STUDENT_ID	<>	2

result:

SELECT
	*
FROM
	STUDENTS
WHERE
	STUDENT_ID	!=	2