Oracle 字串函式
----
SQL> select greatest(111,222) from dual;
GREATEST(111,222)
-----------------
222
SQL> select least(111,222) from dual;
LEAST(111,222)
--------------
111
SQL> select floor(-7.8) from dual;
select sys_guid() from dual;
SYS_GUID()
--------------------------------
52E859DC8A9D0DA8E053FB6410AC9549
insert into t1 values('我們');
insert into t1 values('我你');
insert into t1 values('你們');
insert into t1 values('吃飯');
insert into t1 values('他');
> select * from t1 order by nlssort(name,'nls_sort=schinese_pinyin_m');
SQL> select systimestamp from dual;
SQL> select vsize(ename) "byte" from emp where deptno=30;
SQL> select ora_hash(ename) from emp;
SQL> select extract( hour from sysdate) year from emp;
SQL> select sign(3434) from dual;
------------------------------------------
regular expression
regexp_count
regexp_instr
regexp_replace
regexp_substr
regexp_like
regexp_like
SQL> select ename from emp where regexp_like(ename,'A|S');
SQL> select ename from emp where ename like '%A%' or ename like '%S%';
SQL> select ename from emp where regexp_like(ename,'^A');
SQL> select ename from emp where regexp_like(ename,'G$');
SQL> select ename from emp where regexp_like(ename,'^[A-z]+$');
SQL> select ename from emp where regexp_like(ename,'s','c');
no rows selected
SQL> select ename from emp where regexp_like(ename,'S','i');
regexp_replace
selelect replace('abc','a','d')
select regexp_replace('abcabc','a','0',1,2,'i') from dual;
regexp_instr
SELECT REGEXP_INSTR('1234567890', '(123)(4(56)(78)0)', 1, 1, 1, 'i',1)
"REGEXP_INSTR" FROM DUAL;
0123(((abc)(de)f)ghi)45(678)
abcdefghi abcdef abc de 678
((河北省)(邢臺)(沙河))
河北省邢臺啊啊
河北省邢臺版本
河北生石家莊
regexp_substr
select susbtr('172.16.50.1',)
172.16.100.1
172.168.9.
172.16.100.2
SELECT
REGEXP_SUBSTR('500 Oracle Parkway, Redwood Shores, CA',
',[^,]+,') "REGEXPR_SUBSTR"
FROM DUAL;
^[,]
[^,]
SELECT REGEXP_COUNT('123123123123', '123', 3, 'i') COUNT FROM DUAL;
DECODE
CASE
10 +1000
20 +1500
30 x
40 -500
sign
sal
<2000
2000-4350 1%
4350+ 2%
select
decode sal,sal<2000,sal,
sal>=2000 and sal<4000, sal*0.99
case
select
case when sal<2000 then sal
when between 2000 and 4000 then sal*0.99
else sal*0.98
end sal
from
emp;
select
case when deptno =10 then sal+1000
when deptno=20 then sal+2000
else sal
end sal,
case deptno when 10 then sal+1000
when 20 then sal+2000
else sal
end sal,
from
emp;
------------------------------------------------
最大值 最小值 平均值 求和 統計
max min avg sum count()
字元
數字
日期
---------------------------------------------------
分組函式
select ... group by
(1) 聚集函式
(2) 加到group by後面
select
name,
sum(case subject when '語文' then grade else 0 end) "語文",
max(case when subject='英語' then grade else 0 end ) "英語",
sum(decode(subject,'數學',grade,0)) "數學"
from
t4
group by name;
select '我們' from dual;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69949806/viewspace-2661350/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 字串函式Oracle字串函式
- Oracle字串函式Oracle字串函式
- oracle字串函式(轉)Oracle字串函式
- Oracle字串函式--轉Oracle字串函式
- oracle函式大全-字串處理函式Oracle函式字串
- ORACLE 字串聚合函式 strCatOracle字串函式
- Oracle 函式大全(字串函式,數學函式,日期函式,邏輯運算函式,其他函式)Oracle函式字串
- mysql和oracle字串編碼轉換函式,字串轉位元組函式例子MySqlOracle字串編碼函式
- 字串函式之Strtok()函式字串函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- 字串函式 implode ()字串函式
- 字串函式 explode ()字串函式
- 字串函式 lcfirst ()字串函式
- 字串函式 levenshtein ()字串函式
- 字串函式 ltrim ()字串函式
- 字串函式 metaphone ()字串函式
- 字串函式 print ()字串函式
- 字串函式 ord ()字串函式
- PHP字串函式PHP字串函式
- perl字串函式字串函式
- 字串操作函式字串函式
- Sybase字串函式字串函式
- MySQL 字串函式:字串擷取MySql字串函式
- PHP 每日一函式 — 字串函式 crypt ()PHP函式字串
- PHP 每日一函式 — 字串函式 chr ()PHP函式字串
- MySQL函式學習(一)-----字串函式MySql函式字串
- T-SQL——函式——字串操作函式SQL函式字串
- oracle 獲取字串長度函式length()和lengthb()Oracle字串函式
- oracle取字串長度的函式length()和hengthb()Oracle字串函式
- python字串函式Python字串函式
- PHP的字串函式PHP字串函式
- 函式和字串排序函式字串排序
- fgets(),fputs(),字串函式字串函式
- Sql字串操作函式SQL字串函式
- SQL SERVER 字串函式SQLServer字串函式