一、字符函数
1.大小写控制函数
--lower:使字母变为小写-- --upper:使字母变为大写-- --initcap:使字符的第一个字母变为大写-- select lower(‘ABC‘), upper(‘sql‘), initcap(‘HeLlo SQL‘) from dual;
select employee_id, department_id,last_name, salary from employees where lower(last_name)=‘king‘;
2.字符控制函数
concat(str1,str2)
连接两个字符串。
substr(str,index,n)
截取字符串,从index开始(sql字符串下标第一个为1),截取n个长度。
length(str)
获取str的长度。
instr(str1,str2)
str2在str1首次出现的索引,如果不存在返回0。
lpad(str1,len,str2)
设置str1长度为len,如果长度不够在左边用str2补齐。
rpad(str1,len,str2)
设置str1长度为len,如果长度不够在右边用str2补齐。
trim(str1,from str2)
去掉str2中的st1,仅仅是首部和尾部的。
replace(str,str1,str2)
把str中的str1替换成str2,全部都替换。
select concat(‘hello‘,‘sql‘), substr(‘hellosql‘,2,4), instr(‘HelloWorld‘,‘o‘), length(‘hello sql‘) from dual;
select employee_id,last_name, salary,lpad(salary,10,‘*‘) from employees where department_id=80;
--trim:仅仅去掉首位复合的-- --replace:替换所有的-- select trim(‘A‘ from ‘AABBAACCAA‘), replace(‘AABBAACCAA‘,‘A‘,‘M‘) from dual;
二、数字函数
round: 四舍五入函数。
trunc: 截断函数。
mod: 求余函数。
--round:四舍五入-- select round(435.45,1), round(435.45), round(435.45,-1) from dual;
--trunc:截断-- select trunc(435.45,1), trunc(435.45), trunc(435.45,-1) from dual;
时间: 2024-10-20 08:16:48