I have a string "2016-10-25T00:14:30.000" in PostgreSQL.
I want to convert the timestamp to an integer, e.g: 1477354441
And I want to add custom minutes to that value, e.g. 1477354441+544(minutes) = 1477387081
How to achieve this in PostgreSQL?
I have a string "2016-10-25T00:14:30.000" in PostgreSQL.
I want to convert the timestamp to an integer, e.g: 1477354441
And I want to add custom minutes to that value, e.g. 1477354441+544(minutes) = 1477387081
How to achieve this in PostgreSQL?