i have a table that is having a date field having human date in it like '2008-01-08 19:23:32' Now i have to copy this field plus some other fileds of the same table to another table but date will be in unix timestamp. Is there any function in mysql which converts human date to unix timestamp in query itself ??
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
found here: http://www.epochconverter.com/ |
|||
|
|
|
From MySQL Docs:
|
|||
|
|

unix_timestamp()automatically converts the datetime to UTC before calculating the timestamp. – Aziz Shaikh Oct 14 '11 at 6:37