<=
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
Less than or equal to.
EXAMPLES
SELECT 43 <= 42, 0 <= 1, NULL <= NULL;
+----------+--------+--------------+
| 43 <= 42 | 0 <= 1 | NULL <= NULL |
+----------+--------+--------------+
| 0 | 1 | NULL |
+----------+--------+--------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.