ClickHouse/docs/en/query_language/functions/comparison_functions.md

33 lines
1.2 KiB
Markdown
Raw Normal View History

2020-03-20 10:10:48 +00:00
# Comparison functions {#comparison-functions}
Comparison functions always return 0 or 1 (Uint8).
The following types can be compared:
- numbers
- strings and fixed strings
- dates
- dates with times
within each group, but not between different groups.
2020-03-20 10:10:48 +00:00
For example, you cant compare a date with a string. You have to use a function to convert the string to a date, or vice versa.
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.
2020-03-20 10:10:48 +00:00
Note. Up until version 1.1.54134, signed and unsigned numbers were compared the same way as in C++. In other words, you could get an incorrect result in cases like SELECT 9223372036854775807 \> -1. This behavior changed in version 1.1.54134 and is now mathematically correct.
2020-03-18 18:43:51 +00:00
## equals, a = b and a == b operator {#function-equals}
2020-03-18 18:43:51 +00:00
## notEquals, a ! operator= b and a `<>` b {#function-notequals}
2020-03-18 18:43:51 +00:00
## less, `< operator` {#function-less}
2020-03-18 18:43:51 +00:00
## greater, `> operator` {#function-greater}
2020-03-18 18:43:51 +00:00
## lessOrEquals, `<= operator` {#function-lessorequals}
2020-03-18 18:43:51 +00:00
## greaterOrEquals, `>= operator` {#function-greaterorequals}
2020-01-30 10:34:55 +00:00
[Original article](https://clickhouse.tech/docs/en/query_language/functions/comparison_functions/) <!--hide-->