Finding Dates for Weekdays of Other Weeks : DATE_ADD « Date Time « SQL / MySQL






Finding Dates for Weekdays of Other Weeks

     
mysql>
mysql> SET @target =
    -> DATE_SUB(DATE_ADD(CURDATE( ),INTERVAL 4-DAYOFWEEK(CURDATE( )) DAY), INTERVAL 14 DAY);
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> SELECT CURDATE( ), @target, DAYNAME(@target);
+------------+------------+------------------+
| CURDATE( ) | @target    | DAYNAME(@target) |
+------------+------------+------------------+
| 2011-10-03 | 2011-09-21 | Wednesday        |
+------------+------------+------------------+
1 row in set (0.00 sec)

   
    
    
    
    
  








Related examples in the same category

1.what time will it be in 60 hours?
2.For DATETIME- or TIMESTAMP-formatted strings, you can use DATE_ADD( ) to introduce a temporal context:
3.Finding Dates for Days of the Current Week
4.WHERE DATE_ADD(d,INTERVAL 6 MONTH) >= CURDATE( );
5.Adding a Temporal Interval to a Date
6.Shifting Dates by a Known Amount
7.Adding 3 days and 4 hours produces this result
8.Perform the week shift first