The title says it all; is there an easy (single query) way to do this?

I'm reading those values from a column in a table and I think that the column itself is defined as a string (can't be helped, i'm afraid).

Thanks guys.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Use UNIX_TIMESTAMP;

SELECT UNIX_TIMESTAMP('2007-11-30 10:30:19');

Update:

SELECT UNIX_TIMESTAMP(CAST(fieldName AS DATE));
link|improve this answer
Hmmm great but I should have mentioned i'm reading those values from a column in a table and I think that the column itself is defined as a string. My bad, sorry – Hal Aug 5 '10 at 9:58
Will it recognize the MM/DD/YYYY format automatically? – Hal Aug 5 '10 at 10:05
@Hal: Yes because we have converted it to DATE – Sarfraz Aug 5 '10 at 10:06
1  
I suppose (haven't checked it) it assumes the format specified in the %Y-%m-%d variable (SELECT @@date_format). In my server it is %Y-%m-%d. – Álvaro G. Vicario Aug 5 '10 at 10:13
feedback
SELECT '12/31/10',
    STR_TO_DATE('12/31/10', '%m/%d/%y'),
    UNIX_TIMESTAMP(STR_TO_DATE('12/31/10', '%m/%d/%y'))

Both functions are covered here: http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html

link|improve this answer
feedback
SELECT UNIX_TIMESTAMP(STR_TO_DATE('08/05/10','%m/%d/%y'));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.