All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.plsqlopen.rules.plsql.InequalityUsage.html Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy