make a timestamp-cell in mysql.....if you select the timestamp-field, read it like:
SELECT UNIX_TIMESTAMP(time) as epoch_time
then you can do anything you want with it
and that way you can do so much more nice and tricky mysql-features with that cell (like selecting a certain day range etc)