其他分享
首页 > 其他分享> > impala类型转换函数最全版(强烈建议收藏)

impala类型转换函数最全版(强烈建议收藏)

作者:互联网

**impala类型转换函数最全版(强烈建议收藏)

本文基于impala3.2版本,所有的内置类型转换函数;

文章目录

一、类型转换函数

序号语法类型/方法名称输出类型使用说明
1cast (expression as type )type的类型把expression转化为type类型,不能转换返回null
2cast (expression as type format pattern)type的类型基于pattern完成数据的类型转换,并返回对应的结果
3typeof (expression)string返回expression对应的数据类型的名称

示例如下:

--使用示例                                |        对应输出                 |  对应函数序号
cast(1 as string)                                 “1”                       1
cast("02-11-2014" as date format 'dd-mm-yyyy')    2014-11-02                2
typeof(now())                                     TIMESTAMP                 3

第二个函数没有测试成功,具体的格式和pattern适配可以参考:impala-类型转换函数
http://impala.apache.org/docs/build/html/topics/impala_conversion_functions.html

标签:类型转换,impala,函数,expression,强烈建议,type
来源: https://blog.csdn.net/weixin_43140586/article/details/115455453