du13520157325 2016-09-30 16:18
浏览 45
已采纳

PHP在日期和今天日期之间计数

In my dates database I have a table of dates that have two followups to be completed, one after 30 days, one after 60 days. I need to build a page that uses the MySQL query to pull all dates from the dates table that have a 30day value of No (which I can do). Now the tricky part is, I need it to only output the dates that meet that criteria, and are 30 days from the current date.

For example: August 4 & 6 have a 30day value of No, August 5 has a 30day value of Yes. Today's date is September 4. 30-days prior would be August 5.

I need the query to only display August 4 in this case, since it hasn't been 30 days since August 6 and August 5 has already been done.

I am unsure what kind of function to use to do this counting. I appreciate your help

EDIT:

  1. Date - 30day Value
  2. July 1 - Yes
  3. July 5 - No
  4. August 1 - No
  5. August 5 - No
  6. August 6 - Yes

Today's Date is September 2.

The table would display July 5 and August 1, as their 30day values are No, and they are more than 30 days from todays date.

  • 写回答

3条回答 默认 最新

  • douchengchen7959 2016-10-01 10:40
    关注

    MySQL's DATEDIFF function allows you to subtract 2 dates in a query.

    http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_datediff

    DATEDIFF() returns expr1 − expr2 expressed as a value in days from one date to the other. expr1 and expr2 are date or date-and-time expressions. Only the date parts of the values are used in the calculation.

    For example:

    1. SELECT some_id, date_column
    2. FROM date_table
    3. WHERE DATEDIFF(CURDATE(), date_column) = 30

    You could also select both 30 and 60 days like this and also have a cutoff date of 60 days so it's not searching the whole table:

    1. SELECT some_id, date_column
    2. FROM date_table
    3. WHERE date_column>=DATE_SUB(CURDATE(), INTERVAL 60 DAY)
    4. AND DATEDIFF(CURDATE(), date_column) IN (30, 60)

    And since I'm making some assumptions with my understanding of what you're asking, you may also want to do this which will return the results as 'Yes' or 'No' in your result set:

    1. SELECT some_id, date_column,
    2. CASE DATEDIFF(CURDATE(), date_column)
    3. WHEN 60 THEN 'Yes'
    4. WHEN 30 THEN 'Yes'
    5. ELSE 'No'
    6. END CASE AS is_3060_day
    7. FROM date_table
    8. WHERE date_column>=DATE_SUB(CURDATE(), INTERVAL 60 DAY)

    Alternatively if you want to accomplish this on the PHP side, you could use PHP's date_diff function:

    http://php.net/manual/en/function.date-diff.php

    1. function dateDifference($date_1 , $date_2 , $differenceFormat = '%a' )
    2. {
    3. $datetime1 = date_create($date_1);
    4. $datetime2 = date_create($date_2);
    5. $interval = date_diff($datetime1, $datetime2);
    6. return $interval->format($differenceFormat);
    7. }
    8. $result = dateDifference($date1, $date2)
    9. if ($result==30 || $result==60) {
    10. // Do something
    11. }

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部