The forms "<>", "!=", "~=" and "^=" are equivalent, but only the "<>" form is defined in ANSI SQL.

Noncompliant Code Example

if a != b then

Compliant Solution

if a <> b then