Doris SQL 特技
group_concat
description
Syntax<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">VARCHAR GROUP_CONCAT([DISTINCT] VARCHAR str[, VARCHAR sep] [ORDER BY { col_name | expr} [ASC | DESC])</font>
该函数是类似于 sum() 的聚合函数,group_concat 将结果集中的多行结果连接成一个字符串。第二个参数 sep 为字符串之间的连接符号,该参数可以省略。该函数通常需要和 group by 语句一起使用。
1 | mysql> select value from test; |
row_number
description
为每个 Partition 的每一行返回一个从1开始连续递增的整数。与 RANK() 和 DENSE_RANK() 不同的是,ROW_NUMBER() 返回的值不会重复也不会出现空缺,是连续递增的。
1 | ROW_NUMBER() OVER(partition_by_clause order_by_clause) |
1 | select x, y, row_number() over(partition by x order by y) as rank from int_t; |
timestampdiff
description
Syntax
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">INT</font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);"> </font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">TIMESTAMPDIFF</font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">(unit, DATETIME datetime_expr1, DATETIME datetime_expr2)</font>
返回datetime_expr2−datetime_expr1,其中datetime_expr1和datetime_expr2是日期或日期时间表达式。
结果(整数)的单位由unit参数给出。interval的单位由unit参数给出,它应该是下列值之一:
SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, or YEAR。
1 | MySQL> SELECT TIMESTAMPDIFF(MONTH,'2003-02-01','2003-05-01'); |
array_distinct
description
Syntax
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">ARRAY<T></font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);"> </font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">array_distinct</font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">(ARRAY<T> arr)</font>
返回去除了重复元素的数组,如果输入数组为NULL,则返回NULL。
notice
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">仅支持向量化引擎中使用</font>
1 | mysql> select k1, k2, array_distinct(k2) from array_test; |
split_by_string
description
Syntax
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">ARRAY<STRING></font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);"> </font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">split_by_string</font><font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">(STRING s, STRING separator)</font>
将字符串拆分为由字符串分隔的子字符串。它使用多个字符的常量字符串分隔符作为分隔符。如果字符串分隔符为空,它将字符串拆分为单个字符数组。
Arguments
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">separator</font>
— 分隔符是一个字符串,是用来分割的标志字符. 类型: <font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">String</font>
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">s</font>
— 需要分割的字符串. 类型: <font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">String</font>
Returned value(s)
返回一个包含子字符串的数组. 以下情况会返回空的子字符串:
需要分割的字符串的首尾是分隔符;
多个分隔符连续出现;
需要分割的字符串为空,而分隔符不为空.
Type: <font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">Array(String)</font>
notice
<font style="color:rgb(76, 87, 108);background-color:rgb(237, 242, 250);">仅支持向量化引擎中使用</font>
1 | select split_by_string('a1b1c1d','1'); |