时间:2021-07-01 10:21:17 帮助过:62人阅读
使用:
select unix_to_oracle(1509490525) from dual;
date 转linux时间戳:
create or replace function oracle_to_unix(in_date in date) return number is begin return ((in_date-to_date(‘19700101‘,‘yyyymmdd‘))*86400 - to_number(substr(tz_offset(sessiontimezone),1,3))*3600); end oracle_to_unix;
使用:
select oracle_to_unix(sysdate) from dual;
oracle unix时间戳与date转换
标签:log sda code ges select zone logs col 自定义