ADDDATE('2005-12-31', INTERVAL '3:30' HOUR_MINUTE) returns '2005-12-31 03:30:00'. : ADDDATE « Date Time « SQL / MySQL






ADDDATE('2005-12-31', INTERVAL '3:30' HOUR_MINUTE) returns '2005-12-31 03:30:00'.

    
mysql>
mysql> select ADDDATE('2005-12-31', INTERVAL '3:30' HOUR_MINUTE);
+----------------------------------------------------+
| ADDDATE('2005-12-31', INTERVAL '3:30' HOUR_MINUTE) |
+----------------------------------------------------+
| 2005-12-31 03:30:00                                |
+----------------------------------------------------+
1 row in set (0.00 sec)

mysql>

   
    
    
    
  








Related examples in the same category

1.Use the ADDDATE() function to add 10 hours and 20 minutes to the specified date/time value
2.The ADDDATE() function includes a second form: ADDDATE(, )
3.ADDDATE (date, INTERVAL n i) adds n times the interval i to the starting date date.
4.ADDDATE ('2005-12-31', INTERVAL 2 month)
5.Get the number, the date of birth, and the date that comes seven days after that date of birth.
6.To find the first day of the previous and following months relative to a given date, n would be -1 and 1: