org.sonar.l10n.plsqlopen.rules.plsql.InequalityUsage.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zpa-checks Show documentation
Show all versions of zpa-checks Show documentation
Z PL/SQL Analyzer :: Checks
The newest version!
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