--全部小写 全部大写 全部首字母大写
select lower('ATGUIGUJAVA'),UPPER('ATGUIGU Java'),initcap('ATGUIGU Java')
from dual
--
--转换为小写查询
select * from employees
where lower(last_name)='king'
--拼接 截取 长度
select
CONCAT('hello','world'), SUBSTR('helloworld',2,4), LENGTH('helloworld')
from dual;
--判断字符的位置 没有返回0
select instr('helloworld','w') from dual
--在字符里面取出 去除首尾h
select trim('h'from 'hhellhoworldh') from dual
--员工工作月数
select employee_id,last_name,(sysdate-hire_date)/30,months_between(sysdate,hire_date)
from employees;