<> (lt gt sign) operator

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Returns true if expr1 does not equal expr2, or false otherwise. This function is a synonym for != (bangeq sign) operator.

Syntax

expr1 <> expr2

Arguments

  • expr1: An expression of any comparable type.

  • expr2: An expression that shares a least common type with expr1.

Returns

A BOOLEAN.

Examples

> SELECT 2 <> 2;
 false
> SELECT 3 <> 2;
 true
> SELECT 1 <> '1';
 false
> SELECT true <> NULL;
 NULL
> SELECT NULL <> NULL;
 NULL