ID EN
Comparison Functions and Operators

<=

MySQL 8.4

Less than or equal:

Syntax

MYSQL
SELECT 0.1 <= 2;
1

Examples

Example

For row comparisons, (a, b)

MYSQL
SELECT 0.1 <= 2;
1
Example 2
MYSQL
(a < x) OR ((a = x) AND (b <= y))