2020-04-03 13:23:32 +00:00
|
|
|
|
---
|
2022-08-28 14:53:34 +00:00
|
|
|
|
slug: /en/sql-reference/functions/comparison-functions
|
2022-04-09 13:29:05 +00:00
|
|
|
|
sidebar_position: 36
|
|
|
|
|
sidebar_label: Comparison
|
2020-04-03 13:23:32 +00:00
|
|
|
|
---
|
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
# Comparison Functions
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
|
|
Comparison functions always return 0 or 1 (Uint8).
|
|
|
|
|
|
|
|
|
|
The following types can be compared:
|
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
|
- numbers
|
|
|
|
|
- strings and fixed strings
|
|
|
|
|
- dates
|
|
|
|
|
- dates with times
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
|
|
within each group, but not between different groups.
|
|
|
|
|
|
2020-03-20 10:10:48 +00:00
|
|
|
|
For example, you can’t compare a date with a string. You have to use a function to convert the string to a date, or vice versa.
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
|
|
|
|
Strings are compared by bytes. A shorter string is smaller than all strings that start with it and that contain at least one more character.
|
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## equals, a = b and a == b operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## notEquals, a != b and a \<\> b operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## less, \< operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## greater, \> operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## lessOrEquals, \<= operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|
2022-06-02 10:55:18 +00:00
|
|
|
|
## greaterOrEquals, \>= operator
|
2017-12-28 15:13:23 +00:00
|
|
|
|
|