Re: Conversion from Number to Date

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Conversion from Number to Date
Date: 2023-06-16 03:07:17
Message-ID: 24386a21-7b10-deb1-6285-c7f0efa9d0f4@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On 6/15/23 21:29, Scott Ribe wrote:
>> On Jun 15, 2023, at 8:23 PM, M Sarwar <sarwarmd02(at)outlook(dot)com> wrote:
>>
>> During the data load from CSV files to the database, the above START_TIME and STOP_TIME date column data arrived as number value.
>> Now I need to translate the START_TIME and STOP_TIME back to DATE format.
> Add a number to a date, you get a date that many days out. Similarly, you can add an interval to a timestamp. So you'll need to know the base used for those numbers, and the unit of measurement.
>
> For instance, if the numbers for date are an offset from 1970-01-01 (Unix epoch):
>
> '1970-01-01'::date + <number>

That was my first thought, but there are only 19500 days since 1 jan 1970.

It turns out that 15 Oct 1900 was 44800 days before today, so 1 Jan 1900
might be the epoch.

> If the numbers for time are seconds from then:
>
> '1970-01-01'::timestamptz + '<number> seconds'::interval
>
> Of course you'll also need to know what time zone the times are in, I will graciously leave that as an exercise ;-)
>
> Also, the documentation page you needed:
>
> https://www.postgresql.org/docs/15/functions-datetime.html
>
>
>

--
Born in Arizona, moved to Babylonia.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ed Sabol 2023-06-16 04:19:49 Re: Conversion from Number to Date
Previous Message Scott Ribe 2023-06-16 02:29:59 Re: Conversion from Number to Date