<>
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Operators for MariaDB Enterprise Server
Topics on this page:
Overview
See "!=".
EXAMPLES
SELECT 42 <> 42, 1 <> 0, NULL <> NULL;
+----------+--------+--------------+
| 42 <> 42 | 1 <> 0 | NULL <> NULL |
+----------+--------+--------------+
| 0 | 1 | NULL |
+----------+--------+--------------+