Oracle SQL - Nominal Dates -
i've moved t-sql on oracle , things throwing me off. 1 i've searched bit is, nominal dates.
i have db stores dates nominally (for example 42370 2016-01-01)
any thoughts on how convert in oracle? used convert(datetime) in t-sql.
your dates excel dates, not format generically recognized sql server.
if so, can convert oracle date using same logic apply in sql server or other database: add integer 1899-12-31:
select (date '1899-01-01') + 42370 dual;
Comments
Post a Comment