Cast a String to Timestamp in PostgreSQL

Posted August 20th, 2008 by Chris

If storing a date/timestamp in a varchar or text field in postgres, the to_timestamp() function will let you access the value as a ‘real’ date. The second parameter tells the function the format of your string:

SELECT to_timestamp('2008-08-01', 'YYYY-MM-DD') AS date;

Tags: , , ,
Posted in Personal, Programming | 2 Comments »