RegrasInequalityUsageNessa páginaOnly "<>" should be used to test inequalityThe 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