将SAS datetime转换为oracleu datetime
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将SAS datetime转换为oracleu datetime相关的知识,希望对你有一定的参考价值。
Annoyingly hard to find, I'm sure others out there have felt the pain of converting sas dates to oracle date formats.example:
data _null_;
x_dt = datetime();
x_d = date();
put x_dt oracle_datetime.;
put x_d oracle_date.;
run;
proc format library=your.formats.library; picture oracle_datetime other='%0d/%0m/%0Y %0H:%0M:%0S' (datatype=datetime); run; proc format library=your.formats.library; picture oracle_date other='%0d-%0b-%0Y' (datatype=date); run; proc format library=your.formats.library; picture oracle_time other='%0H:%0M:%0S' (datatype=time); run;
以上是关于将SAS datetime转换为oracleu datetime的主要内容,如果未能解决你的问题,请参考以下文章
sas date - 将 today() 转换为 yyyymmdd 格式
Python numpy:无法将 datetime64[ns] 转换为 datetime64[D](与 Numba 一起使用)