Adding 3 days and 4 hours produces this result : DATE_ADD « Date Time « SQL / MySQL






Adding 3 days and 4 hours produces this result

     
mysql>
mysql> SELECT NOW( ), DATE_ADD(NOW( ),INTERVAL '3 4' DAY_HOUR);
+---------------------+------------------------------------------+
| NOW( )              | DATE_ADD(NOW( ),INTERVAL '3 4' DAY_HOUR) |
+---------------------+------------------------------------------+
| 2011-10-03 13:05:47 | 2011-10-06 17:05:47                      |
+---------------------+------------------------------------------+
1 row in set (0.00 sec)

mysql>
mysql>
mysql>

   
    
    
    
    
  








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 Weekdays of Other Weeks
4.Finding Dates for Days of the Current Week
5.WHERE DATE_ADD(d,INTERVAL 6 MONTH) >= CURDATE( );
6.Adding a Temporal Interval to a Date
7.Shifting Dates by a Known Amount
8.Perform the week shift first