=
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
Equal to (if either value is NULL it returns NULL instead of 1 or 0).
EXAMPLES
SELECT 42 = 42, 1 = 0, NULL = NULL;
+---------+-------+-------------+
| 42 = 42 | 1 = 0 | NULL = NULL |
+---------+-------+-------------+
| 1 | 0 | NULL |
+---------+-------+-------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.