The SQL Greater Than or Equal To comparison operator (>=) is used to compare two values. It returns TRUE if the first value is greater than or equal to the second. If the second is greater, it returns FALSE.
You can also test for greater than or equal to by using >=.
Here are a couple of examples:
10 >= 5 | TRUE |
5 >= 20 | FALSE |
10 >= 10 | TRUE |
Here is an example using the SQL greater than or equal to comparison operator to find all products whose list price is $3000 or more:
Only rows having a ListPrice equal to or more than $3000.00 are included in the result. Try it for yourself!
SQL Greater Than or Equal To with Other Types
You can use the SQL greater than or equal to comparison with other data types, such as VARCHAR and DATETIME.
Here we’re returning products modified after February 1st, 2014.
Additional Resources
To learn more about SQL greater than or equal to (>=), check out these useful resources: