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

36 lines
1018 B
Markdown
Raw Normal View History

2020-06-08 05:29:08 +00:00
---
toc_priority: 36
toc_title: 比较函数
---
# 比较函数 {#bi-jiao-han-shu}
2019-05-05 17:38:05 +00:00
比较函数始终返回0或1UInt8
可以比较以下类型:
- 数字
- String 和 FixedString
- 日期
- 日期时间
2019-05-05 17:38:05 +00:00
以上每个组内的类型均可互相比较,但是对于不同组的类型间不能够进行比较。
例如,您无法将日期与字符串进行比较。您必须使用函数将字符串转换为日期,反之亦然。
字符串按字节进行比较。较短的字符串小于以其开头并且至少包含一个字符的所有字符串。
2020-06-08 05:29:08 +00:00
## 等于a=b和a==b 运算符 {#equals-a-b-and-a-b-operator}
2019-05-05 17:38:05 +00:00
2020-06-08 05:29:08 +00:00
## 不等于a!=b和a<>b 运算符 {#notequals-a-operator-b-and-a-b}
2019-05-05 17:38:05 +00:00
2020-06-08 05:29:08 +00:00
## 少, < 运算符 {#less-operator}
2019-05-05 17:38:05 +00:00
2020-06-08 05:29:08 +00:00
## 大于, > 运算符 {#greater-operator}
2019-05-05 17:38:05 +00:00
2020-06-08 05:29:08 +00:00
## 小于等于, <= 运算符 {#lessorequals-operator}
2019-05-05 17:38:05 +00:00
2020-06-08 05:29:08 +00:00
## 大于等于, >= 运算符 {#greaterorequals-operator}
2019-05-05 17:38:05 +00:00
2020-01-30 10:34:55 +00:00
[来源文章](https://clickhouse.tech/docs/en/query_language/functions/comparison_functions/) <!--hide-->