oracle函数
4.转换函数:
---to_char select to_char(hiredate,'yyyy-mm-dd') from emp select to_char (hiredate,'yyyy"年"mm"月"dd"日"') from emp
select sal, to_char (sal, 'l0,000,000.00') as saltest from emp
结果:
查询入职时间在1982年之后的员工: select ename,hiredate from emp where hiredate>to_date('1981-12-31','yyyy-mm-dd')
查询工资大于2000的所有员工: select ename,sal from emp where sal>to_number('¥2000','l9999');
5.通用函数:
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
Justdoit00 2020-07-04
goodriver 2020-06-17
sunboy 2020-06-14
LuoXinLoves 2020-06-10
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
Justdoit00 2020-06-01
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27
oraclemch 2020-04-22
Carlos 2020-04-18