vote up 3 vote down star

In MySQL, how would I get a timestamp from, say 30 days ago?

Something like:

select now() - 30

The result should return a timestamp.

flag

79% accept rate
What format of timestamp ? There's the format people who work with MySQL DATE functions are familiar with, and there's a UNIX style timestamp. – joebert Jul 8 at 2:22
I'm after the MySQL Timestamp. – Ben Noland Jul 8 at 13:15

3 Answers

vote up 5 vote down check

DATE_SUB will do part of it depending on what you want

mysql> SELECT DATE_SUB(NOW(), INTERVAL 30 day);
2009-06-07 21:55:09

mysql> SELECT TIMESTAMP(DATE_SUB(NOW(), INTERVAL 30 day));
2009-06-07 21:55:09

mysql> SELECT UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL 30 day));
1244433347
link|flag
vote up 3 vote down

You could use:

SELECT unix_timestamp(now()) - unix_timestamp(maketime(_,_,_));

For unix timestamps or:

SELECT addtime(now(),maketime(_,_,_));

For the standard MySQL date format.

link|flag
vote up 5 vote down

I think you are after DATE_SUB.

link|flag

Your Answer

Get an OpenID
or

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