Postgres + Unixtime 2006-08-21 09:25am
Here's how you get unixtime from a Postgres date field.
SELECT extract('epoch' from DateField) AS UnixTime FROM Table;
SELECT extract('epoch' from DateField) AS UnixTime FROM Table;