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

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