029-数据处理函数之获取字符串长度
sql
select length('我是Cupid');
select char_length('我是Cupid');
concat (concatenate)
sql
select concat('cu', 'pid', ' so', ' handsome');
030-去除字符串前后空白-trim
sql
select trim(' a b c ');
sql
select trim(leading '0' from '000110');
select trim(trailing '0' from '000110');
select trim(both '0' from '000110');
031-数字相关
rand() 生成0-1随机浮点数
sql
select rand();
rand(x)生成0到1的随机浮点数,通过指定整数x来确定每次获取到相同的浮点值。
sql
select rand(42);
round(x) 四舍五入,保留整数位,舍去所有小数
sql
select round(41.5);
round(x,y) 四舍五入,保留y位小数
sql
select round(41.553, 2);
truncate(x, y)舍去
sql
select truncate(41.553, 1);
- ceil函数:返回大于或等于数值x的最小整数
- floor函数:返回小于或等于数值x的最大整数
sql
select ceil(3.001);
select floor(3.999);