单行函数可以互相嵌套,运算从内到外
一. 字符函数
1.1 大小写控制函数
- lower:全部转换为小写
- upper:全部转换为大写
- initcap:首字母大写
select lower('HELLO'),upper('hello'),initcap('Hello world') from dual;
1.2 字符控制函数
- concat:连接两个字符
- substr:截取字符串
- length:取字符的长度
select concat('Hello','World'), substr('HelloWorld',2,4), length('HelloWorld') from dual;
- instr:判断单个字符在字符串中首次出现的位置
字符不存在时返回0
select instr('helloworld','d') from dual;
- lpad:左侧填充
select employee_id,last_name,lpad(salary,10,'*')from employees;
-- 返回结果 ******3000
- rpad:右侧填充
select employee_id,last_name,rpad(salary,10,'*')from employees;
--返回结果 3000******
- trim:移除
只能去除首位字符
select trim('h' from 'helloworld') from dual;
--返回结果 elloworld
- replace:替换
替换所有
select