标签:查找 sel font 表示 rom 解析 oracl 序号 开始
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.46
ceil(n) 取大于等于数值n的最小整数;
floor(n)取小于等于数值n的最大整数
标签:查找 sel font 表示 rom 解析 oracl 序号 开始
原文地址:https://www.cnblogs.com/lldbang/p/13394523.html