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')