ID EN
Comparison Functions and Operators

>=

MySQL 8.4

Greater than or equal:

Syntax

MYSQL
SELECT 2 >= 2;
1

Examples

Example

For row comparisons, (a, b) >= (x, y) is equivalent to:

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