选择从到期日期时起3天的记录

时间:2014-05-26 17:23:30

标签: php mysql datetime

我有一个包含datetime timestamp的表格。我要找的是根据datetime timestamp选择距离30天到期3天的记录。

这是我到目前为止所做的,虽然我不认为这是正确的:

    SELECT jobs.*,occupations.title
    FROM jobs
    LEFT JOIN occupations on occupations.id = jobs.occupation_id
    WHERE DATE_ADD(jobs.`date_created`,INTERVAL 27 DAY) = DATE(NOW())

0 个答案:

没有答案