創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比凌河網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式凌河網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋凌河地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。
單行函數(shù)
============================================================
特點(diǎn):
每行返回一個結(jié)果,輸入輸出存在一一對應(yīng)的關(guān)系
能嵌套使用 ,一個函數(shù)的輸出能做另外一個函數(shù)的輸入 如:select lowner(upper('aa')) from dual;
傳入的變量可以是列的值,也可以是表達(dá)式。 如 select lower(ename) from emp;
============================================================
轉(zhuǎn)換函數(shù):
to_number: 將字符類型的數(shù)據(jù)轉(zhuǎn)換為數(shù)字類型
to_date:將字符類型的數(shù)據(jù)轉(zhuǎn)換為日期類型d
to_char:將number或者是date類型的數(shù)據(jù)轉(zhuǎn)換為字符類型
============================================================
1.1、to_char:將時間類型的數(shù)據(jù)轉(zhuǎn)換為字符類型
語法:to_char(date,'format_model')
format_model:日期格式類型
yyyy 數(shù)字年份形式 四位數(shù)
year 年份的拼寫形式
mm 數(shù)字日期形式
month 月份的全拼格式
mon 月份的簡寫 三位數(shù)
dy 星期的簡寫 三位數(shù)
day 星期的全寫
dd 數(shù)字形式日期 兩位數(shù)
例如:
①查詢當(dāng)前時間,時間格式顯示為2011-01-02 12:10:13
SQL>select sysdate from dual; ----顯示默認(rèn)的時間格式
SQL>select to_char(sysdate,'yyyy-mm-dd hh34:mi:ss') from dual;
②查詢當(dāng)前時間,時間格式顯示為 “星期全寫 四位年 月份全寫"
SQL>select to_char(sysdate,'day yyyy month') from dual;
③fm的使用 去掉前導(dǎo)0
SQL> select to_char(sysdate-13,'dd') from dual;
TO
--
07
SQL> select to_char(sysdate-13,'fmdd') from dual;
TO
--
7
④日期格式里面插入字符,需要用雙引號把字符引起來,如” 星期全寫 victor 四位年 月份全寫"
SQL>select to_char(sysdate,'day "victor" yyyy month') from dual;
============================================================
1.2、to_char:將數(shù)字類型的數(shù)據(jù)轉(zhuǎn)換為字符類型
語法:to_char(number,'format_model')
format_model:格式類型
9 ----有多少個number(就是多少位) 都真實(shí)的顯示出來,如果前面是0的,后面是number的,前面的0不顯示
0 ----有多少位就顯示多少位,不足的用0填充
$ ----用美元顯示
L ----使用本地貨幣符號
.
,
①測試9和0的區(qū)別:想要把工資顯示為x,xxx.xx這種格式
SQL>select ename,to_char(sal,'9,999.99') from emp;
改成
SQL>select ename,to_char(sal,'9,009.09') from emp;
發(fā)現(xiàn)沒有區(qū)別,因?yàn)?和0都是表示一位數(shù)字
---------------------------------------------------------------------------------------
改成
SQL>select ename,to_char(sal,'0,999.99') from emp;
現(xiàn)在需要顯示4位數(shù),800要顯示為0800,由于前面是0,那就是說不夠的用0填充
---------------------------------------------------------------------------------------
改成
SQL>select ename,to_char(sal,'09909090,999.99') from emp;
總結(jié):9和0都是表示一個數(shù)字,0表示不足位的時候用0去填充,一般只用在前導(dǎo)位。
============================================================
2、to_number:用于將字符類型轉(zhuǎn)換為數(shù)字類型
SQL>select to_number('234234.4350','999999.0000') from dual;
TO_NUMBER('RMB234234.4350','L999999.0000')
——————————————
234234.435
①用于將16進(jìn)制轉(zhuǎn)化為10進(jìn)制
SQL>select to_number('fa','xxxxx') from dual;
============================================================
3、to_date:用于將數(shù)據(jù)轉(zhuǎn)換為日期類型
語法:to_date('char','format_model')
format_model:格式類型
yyyy 數(shù)字年份形式 四位數(shù)
year 年份的拼寫形式
mm 數(shù)字日期形式
month 月份的全拼格式
mon 月份的簡寫 三位數(shù)
dy 星期的簡寫 三位數(shù)
day 星期的全寫
dd 數(shù)字形式日期 兩位數(shù)
①select * from emp where hiredate < to_date('1986-07-25','yyyy-mm-dd');
============================================================
4、空值函數(shù)
①NVL(expr1,expr2):對expr1進(jìn)行判斷,如果expr1為空,則返回expr2,如果expr1不為空,則返回expr1本身
SQL>select ename,comm,nvl(comm,0) from emp;
注意:數(shù)據(jù)類型需要匹配,如expr1為number,那么expr2也要為number,否則會報錯
②NVL2(exp1,expr2,expr3):對expr1進(jìn)行判斷,如果expr1為空,則返回expr3,如果expr1不為空,則返回expr2;
SQL>select ename,comm,nvl2(comm,1,0) from emp;
③NULLIF(expr1,expr2):如果expr1和expr2相等,則返回null,否則返回expr1
SQL> select sal,nullif(sal,3000) from emp;
============================================================
5、條件表達(dá)式
①case的語法:
case expr when expr1 when return_expr1
when expr2 when return_expr2
when expr3 when return_expr3
else else_expr
end;
eg:對deptno進(jìn)行判斷,如果10號部門,返回一倍工資(1*sal),如果是20號部門,返回兩倍工資(2*sal),如果是30,返回3倍工資,如果都不是,則返回一半工資
select ename,deptno,sal,
case deptno
when 10 then 1*sal
when 20 then 2*sal
when 30 then 3*sal
else sal/2
end
from emp;
②decode:decode(expr1,expr2,expr3,.........)
eg:對deptno進(jìn)行判斷,如果是10號部門,返回一倍工資(1*sal),如果不是,則返回0。
SQL>select ename,deptno,sal,decode(deptno,10,sal,0) from emp;
eg:對deptno進(jìn)行判斷,如果是10號部門,返回一倍工資(1*sal);如果是30號部門,返回30倍工資(30*sal);如果是41號部門,返回50。
SQL>select ename,deptno,sal,decode(deptno,10,sal,30,30*sal,41,50) from emp;
使用decode 改寫case中的列子
SQL>select ename,deptno,sal,decode(deptno,10,sal,20,2*sal,30,3*sal,sal/2) from emp;