IS THIS '<>' OPERATOR IS USED FOR 'NOT EQUAL CONDITION? IN PL/SQL
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.