You need to enable JavaScript to run this app.
导航
比较函数
最近更新时间:2024.11.25 12:55:24首次发布时间:2022.02.28 12:33:06

greatest

返回 a 和 b 中的最大值。
语法

greatest(a, b)

参数

  • a,b– 要比较的两个值

返回值

  • a,b 中的较大值。

示例

SELECT greatest(1, 2)
┌─greatest(1, 2)─┐
│ 2              │
└────────────────┘
SELECT greatest(toDate('2019-01-01'), toDate('2019-01-02'))
┌─greatest(toDate('2019-01-01'), toDate('2019-01-02'))─┐
│ 2019-01-02                                           │
└──────────────────────────────────────────────────────┘

notEquals

notEquals、a != b 和 a <> b 运算符
语法

notEquals(a, b)
a!=b
a<>b

参数

  • a,b– 要比较的两个值

返回值

  • UInt8

示例

SELECT notEquals(1, 1), 1!=1, 1<>1
┌─notEquals(1, 1)─┬─notEquals(1, 1)─┬─notEquals(1, 1)─┐
│ 0               │ 0               │ 0               │
└─────────────────┴─────────────────┴─────────────────┘
SELECT notEquals(1, 2), 1!=2, 1<>2
┌─notEquals(1, 2)─┬─notEquals(1, 2)─┬─notEquals(1, 2)─┐
│ 1               │ 1               │ 1               │
└─────────────────┴─────────────────┴─────────────────┘