In MySQL, how would I get a timestamp from, say 30 days ago?
Something like:
select now() - 30
The result should return a timestamp.
|
|
In MySQL, how would I get a timestamp from, say 30 days ago? Something like:
The result should return a timestamp.
|
||||
|
|
|
DATE_SUB will do part of it depending on what you want
|
||
|
|
|
|
You could use:
For unix timestamps or:
For the standard MySQL date format. |
||
|
|
|
|
I think you are after DATE_SUB. |
||
|
|