ClickHouse/docs/en/sql-reference/functions/comparison-functions.md

35 lines
912 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 36
toc_title: Comparison
---
# 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-18 18:43:51 +00:00
## equals, a = b and a == b operator {#function-equals}
## notEquals, a != b and a \<\> b operator {#function-notequals}
## less, \< operator {#function-less}
## greater, \> operator {#function-greater}
## lessOrEquals, \<= operator {#function-lessorequals}
## greaterOrEquals, \>= operator {#function-greaterorequals}