How do I convert the following format to UNIX timestamps?
A value like: 01-02-2015 10:20 PM
should be converted to: 1418273999000
I did try to_timestamp
function but its not working for me.
How do I convert the following format to UNIX timestamps?
A value like: 01-02-2015 10:20 PM
should be converted to: 1418273999000
I did try to_timestamp
function but its not working for me.
If your data is stored in a column called ts, in a table called data, do this:
To add Joe's answer, you can use
date_part
, i think it's syntax is clearer than 'extract'.select date_part('epoch', ts) from data;