返回 a 和 b 中的最大值。
语法
greatest(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、a != b 和 a <> b 运算符
语法
notEquals(a, b) a!=b a<>b
参数
a,b
– 要比较的两个值返回值
示例
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 │ └─────────────────┴─────────────────┴─────────────────┘