Redshift convert dates to unix timestamps
Asked Answered
T

2

8

I have a column of dates in a Redshift table. I would like the output to be in the form of unix timestamps. Essentially, I want the opposite of this question: How to convert epoch to datetime redshift?

Is there a way to do this?

Tagalog answered 9/6, 2017 at 15:50 Comment(1)
can you show the format of your dates?Lissotrichous
D
9

Date_part is dead. Use extract() now --

SELECT extract(epoch from CURRENT_DATE)
Druci answered 18/11, 2021 at 9:59 Comment(0)
L
8

You can just use EPOCH with DATE_PART.

select date_part(epoch, date_column)
from tbl  

From the documentation

The Amazon Redshift implementation of EPOCH is relative to 1970-01-01 00:00:00.000000 independent of the time zone where the server resides. You might need to offset the results by the difference in hours depending on the time zone where the server is located.

Lissotrichous answered 9/6, 2017 at 16:40 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.