Multiple choice general knowledge

IS THIS '<>' OPERATOR IS USED FOR 'NOT EQUAL CONDITION? IN PL/SQL

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In PL/SQL, the '<>' operator is indeed used for 'not equal' comparison. PL/SQL supports multiple inequality operators including '<>', '!=', '^=', and '~='. All these operators perform the same function - they return TRUE if the operands are not equal and FALSE if they are equal. The '<>' syntax is ANSI standard and works in most SQL implementations.