1.两种类型的函数
1.单行函数
2.多行函数
select suM(qty) from sales group by stor_id;
select substr(au_lname,1,5) from authors;单行函数
单行函数 包括了,
字符函数 大小写,字符处理(lower,upper initcap) concat,substr,length instr lpad|rpad trim replace
select lower(au_lname),upper(sdff).initcap
c /address/au_lame
run
**oracl字符比较是区分大小写。
select au_lan ||''||jkfdlf from table
select concat(au_lnme,sdfsf) from talbe
如果是-1是从右边取起
instr(alu_id,'t')是否包括t
lpad左边填充什么东西达到一个字符长度lpan(salery,10,'*'))左边填充,
trim ('h' from 'al_id')
结果 elloworld
select employ_id, concat (firest_name, last_name) name, job_id,length(last_name),
instr(last_name,'a') "Contains 'a' "?
from employees
where substr(job_id,4) = 'rep';
rpad
数字函数()
round四舍五入 trunc省略 mod
求余
同上。小树点左右有关round(d1212,-1)