I’m trying to get the results of the past 15 days in a database. The time is added in epoch format, like 1400904415
.
I’m trying to get only the last results (15 days), so I’m wondering if it is possible to do something like this:
SELECT * FROM dataadded WHERE createdate="here something like createdate its bigger than currentdate - 15 days"
Is that possible?