字符函数:
concat(),concat_ws(dele,par1,par2,……)
select concat(name,age)as info from zx_test;
-
select concat_ws('-->',name,age)as info from zx_test;
-
format():
[l/r]trim(string);去掉前导/末尾/前导+末尾空格;
trim 还可以在上述位置除掉空格之外的其他字符,:
select trim(
leading/trailing/both
'string_tobedeleted' from 'given_string');#在开头/结尾/开头+结尾处删除给定字符串中的要删除的字符
trim不能去除字符串中间的字符,如果要全部除去,可以用replace('strings_given','string_tobedeleted','new_String');
substring('string_given',start_position,number_to_get);
进行字符串截取,给定字符串和截取的开始位置以及需要截取的位数;
通配符查找: 任意字符用%表示,任意一个字符用个‘_’下划线表示转移用发如下;
取整哈数:ceil/floor(values);向上/下取整:
字符的截断、范围判断、是否为null 的判断“
select15 between 1and45,
-
3not between 8and10,
-
10in(3,4,5), -
' 'isnull, -
0isnull;
聚合函数:只有一个返回值sum/avg/max/min:
加密函数:
md5('string');