时间:2021-07-01 10:21:17 帮助过:3人阅读
查询1980年12月17日入职的员工(方式一:日期隐示式转换)
select * from emp where hiredate = ‘17-12月-80‘;
1、转向字符串
1.1、由日期转向字符串
使用to_char(日期,‘格"常量"式‘)函数将日期转成字符串
显示如下格式:2015 年 04 月 25 日 星期六
select to_char(sysdate,‘yyyy" 年 "mm" 月 "dd" 日 "day‘) from dual;
使用to_char(日期,‘格式‘)函数将日期转成字符串,显示如格式:2015-04-25今天是星期六 15:15:15
select to_char(sysdate,‘yyyy-mm-dd"今天是"day hh24:mi:ss‘) from dual;
或
select to_char(sysdate,‘yyyy-mm-dd"今天是"day HH12:MI:SS AM‘) from dual;
1.2、由数值转向字符串
使用to_char(数值,‘格式‘)函数将数值转成字符串,显示如下格式:$1,234
select to_char(1234,‘$9,999‘) from dual;
使用to_char(数值,‘格式‘)函数将数值转成字符串,显示如下格式:¥1,234
select to_char(1234,‘$9,999‘) from dual; select to_char(1234,‘L9,999‘) from dual;
注意:L代表Locale的意思
2、由字符串转向日期
使用to_date(‘字符串‘,‘格式‘)函数,查询1980年12月17日入职的员工(方式二:日期显式转换)
select * from emp where hiredate = to_date(‘1980年12月17日‘,‘yyyy"年"mm"月"dd"日"‘);
或
select * from emp where hiredate = to_date(‘1980#12#17‘,‘yyyy"#"mm"#"dd‘);
或
select * from emp where hiredate = to_date(‘1980-12-17‘,‘yyyy-mm-dd‘);
3、由字符串转向数值
使用to_number(‘字符串‘)函数将字符串‘123’转成数字123
select to_number(‘123‘) from dual;
注意:
select ‘123‘ + 123 from dual;
结果:246
select ‘123‘ || 123 from dual;
结果:123123
Oracle系列:(9)三大类型转换
标签:oracle