oracle函数

前端之家收集整理的这篇文章主要介绍了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.通用函数:

原文链接:https://www.f2er.com/oracle/206421.html

猜你在找的Oracle相关文章