impala常用函数(转载)

更新时间:2023-06-01 09:09:34 阅读: 评论:0

impala常⽤函数(转载)      1、字符串截取substr,从1开始,⽽不是0;注意⼀个汉字长度是3
    lect substr(brand,1,6)
  2、cast函数
英语培训计划    cast(expr AS type), 类型转换函数
    lect cast(length as int) len
  3、max,min,avg函数:length字段是字符串类型
    lect max(cast(length as int)) len
    lect min(cast(length as int)) len
    lect avg(cast(length as int)) len
  4、截取数值,四舍五⼊
    lect dround(2.14123,3) result;
    lect dround(2.14123,2) result;
ipin    取整
    lect dround(2.14123) result;
  5、删除所有⼩数点以后的数或删除N位⼩数
    lect truncate(3.45);
    lect truncate(3.456,1)
  6、返回表达式列表中的最⼤值:greatest
    lect greatest(5,16,2) as greatest;
  7、返回表达式列表中的最⼩值: least
wear的用法    lect least(5,16,2) as least;
  8、like 模糊查询
北京瑞思学科英语
    lect count(*) from  dw_bill_his where city='北京' and broadcastdate like '2018/03%';    职称英语真题
  9、字符串截取,substr(str,startindex,length) startindex从1开始
    lect substr('2018-08-20',1,4) year1;
  10、字符串连接 concat(string a,string b…)
  11、字符串长度 length(string a)
    lect length('world') as len;
  12、给表增加⼀列:
    ALTER TABLE name ADD COLUMNS (col_spec[, col_spec ...])   
877结果状语从句  13、删除⼀列
    ALTER TABLE name DROP [COLUMN] column_name
  14、字符串去空格
    去左空格:  lect ltrim(' hello ');
特朗普演讲
    去右空格:  lect rtrim(' hello ');
    去左右空格:  lect trim(' hello ');
  15、查询某个字段为null的记录条数aceticacid
ins是什么    lect count(1) from dw_bill where brand is  null;
    不为null的记录条数
    lect count(1) from dw_bill where brand is  not null;
16、去掉左侧指定字符
ltrim('0*aaaa','*0')
17、去掉右侧指定字符
rtrim('aaaa0*','*0')

本文发布于:2023-06-01 09:09:34,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/825697.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字符串   字段   函数   截取   记录
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图