Oracle函数
1.Lag向上取一条,Lead向下取一条
Lag(Field01) over(order by Field02)
2.Rollup函数即内卷函数
分组统计
3. decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值)
4.LAST_DAY(date)表示当月最后一天
5.字符串函数substr(‘123’,1,1)提取字符串‘1’
格式一:instr( string1, string2 ) // instr(源字符串, 目标字符串)
格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] ) // instr(源字符串, 目标字符串, 起始位置, 匹配序号)
解析:string2 的值要在string1中查找,是从start_position给出的数值(即:位置)开始在string1检索,检索第nth_appearance(几)次出现string2。
replace(ename,‘s‘,‘S‘)替换字符串
四舍五入:
select round(123.456, 0) from dual; 返回123 select round(123.456, 1) from dual; 返回123.5 select round(-123.456, 2) from dual; 返回-123.46ceil(n) 取大于等于数值n的最小整数;floor(n)取小于等于数值n的最大整数
相关推荐
Omega 2020-08-16
goodriver 2020-06-17
LuoXinLoves 2020-06-10
Justdoit00 2020-06-01
Carlos 2020-03-06
LuoXinLoves 2020-02-24
昊 2019-12-11
Justdoit00 2020-07-04
sunboy 2020-06-14
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27