一、数据类型转换函数 ? ? ? ? ?(说明本文中用到的数据是oracle自带的scott用户下的表)
数据类型转换函数分为:数据类型的隐式转换 和 数据类型的显示转换
?
1.数据类型的隐式转换
字符串可以转化为数字和日期,数字要合法,日期要格式匹配。
?
select ename,empno from emp where empno = '7900';
?
?数字和日期在赋值的时候可以转换为字符串,但在表达式的时候不可以转换。
?
select ename,empno from emp where ename = '123'; select ename,empno from emp where ename = 123; //错误?
?
?
2.数据类型的显示转换
to_char:转化为字符串
?
select ename,hiredate, to_char(hiredate,'yyyy/mm/dd') from emp; //日期转化为字符串,得说明字符串的格式。 select ename,to_char(hiredate,'fmyyyy/mm/dd') from emp; //fm是清除前置的零和空格 select to_char(hiredate,'fmyyyy"年"mm"月"') from emp; //格式内加入字符串需要用双引
?
select ename,to_char(sal,'9999.000') salary from emp; select ename,to_char(sal,'l99,999.000') salary from emp; select ename,to_char(sal,'$99,999.000') salary from emp; select ename,to_char(sal,'9g999d99')salary from emp;
?9代表有多少宽度,如果不足会显示成#######,0代表强制显示0,但不会改变结果,g是千分符,d是小数点,l 指代¥
?
十进制转化为十六进制:在数据库中16进制的表达式按照字符串来描述的,所以在转换时需要用to_char函数
?
select to_char(11,'xxxx') from dual;
?//其中xxx的位数要足够,不然不会正确显示,需要多写,足够多就ok.
?
?
to_number:转化为数字
十六进制的数转换为十进制的数要用to_number函数
?
select to_number('a','xx') from dual;
?
?
to_date:转化为日期
?
select to_date('1992-10-20','yy/mm/dd hh24:mi:ss') from dual; select to_date('19921021','yy/mm/dd') from dual; select to_date( 'January 15, 1989, 11:00 A.M.', 'Month dd, YYYY, HH:MI A.M.','NLS_DATE_LANGUAGE = American') from dual;
?//yy是两位来表示年,世纪永远和说话者的当前世纪相同
?
?
二、综合数据类型函数
?
1.操作数据位null的函数
?
nvl(expr1,expr2):如果expr1为空,就返回expr1,如果expr2为空返回expr2,两个表达式的数据类型一定要相同
?
select ename,comm,nvl(comm,-1) from emp;
?
?
nvl2(expr1,expr2,expr3):如果expr为非空,就返回expr2,如果expr1为空返回expr3
?
select ename,comm,nvl2(comm,comm,-1) from emp;
?
?
nullif(expr1,expr2):如果expr1和expr2相同就返回空,否则返回expr1
?
select ename,nullif(ename,'KING') from emp;
?
?
coalesce(expr1,expr2,...,exprm):返回括号内第一个非空的值
?
select ename,coalesce(comm,sal,100)"奖金" from emp;
?
?
2.分支函数
?
case语句
?
select ename,job,sal, case job when 'CLERK' then 1.10*sal when 'SALESMAN' then 1.15*sal else sal end "revise_salary" from emp; //case...end 查询的是一列数据,end后面是给该列起的别名
decode:和case