presto常用函数

1.时间格式化
to_char(time,'yyyy-mm-dd hh24:mi:ss'),注意presto中没有MM

2.非空判断
coalesce(l.remark,'空'),类似nvl

3.类型转换
cast(amount as decimal(36.2))
cast(id as varchar)

4.行转列
array_join
(array_distinct(array_agg(username)),',')
要求:得到结果  "张三,李四"

id username
1 张三
2 李四





 

array_agg(expression):将表达式转成数组
array_join(x,','):将X以“,”连接起来

https://blog.csdn.net/butterfly1009/article/details/54016746

5.替换,拼接函数
concat(substr(mi.realname,1,1),regexp_replace(substr(replace(replace(mi.realname,' ','*'),'·','*'),2), '[\u4E00-\u9FA5A-Za-z0-9_]', '*'))
要求:姓名脱敏
张三-->张*
李四五-->李**

6.日期函数
参考:https://prestodb.github.io/docs/current/functions/datetime.html

你可能感兴趣的:(#,presto,常用函数)