sql语句字符串型日期转化为数字类型

例如:1998/09/21

to_number(substr(hiredate,0,4))  ,这个方法只可以把年份变为数字

获取系统时间:
select to_char(sysdate,’yyyy-mm-dd’) from dual

to_char函数的用法:将数值型或者日期型转化为字符型

TO_CHAR(date,’格式’);

TO_CHAR(number, ‘格式’)

TO_CHAR(salary,’$99,999.99’)

 

转载于:https://www.cnblogs.com/fltkxy/p/9394676.html

    原文作者:weixin_30795127
    原文地址: https://blog.csdn.net/weixin_30795127/article/details/98851551
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞