odps函数

1、wm_concat

聚合函数,可以实现对分组后的列数据拼接成一行。

参数:第一个参数为分隔符,第二个参数为要聚合的列;

select prov_code,wm_concat('-',city_name)
from code_china_area
group by prov_code;

2、datediff

日期函数,求两个日期的时间差

select datediff(getdate(),'2023-06-30 00:00:00','dd')

你可能感兴趣的:(Odps,sql)