Función MySQL DATE_ADD()
Ejemplo
Agregue 10 días a una fecha y devuelva la fecha:
SELECT DATE_ADD("2017-06-15", INTERVAL 10 DAY);
Definición y uso
La función DATE_ADD() agrega un intervalo de hora/fecha a una fecha y luego devuelve la fecha.
Sintaxis
DATE_ADD(date, INTERVAL value addunit)
Valores paramétricos
Parameter | Description |
---|---|
date | Required. The date to be modified |
value | Required. The value of the time/date interval to add. Both positive and negative values are allowed |
addunit | Required. The type of interval to add. Can be one of the following
values:
|
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Agregue 15 minutos a una fecha y devuelva la fecha:
SELECT DATE_ADD("2017-06-15 09:34:21", INTERVAL 15 MINUTE);
Ejemplo
Resta 3 horas a una fecha y devuelve la fecha:
SELECT DATE_ADD("2017-06-15 09:34:21", INTERVAL -3 HOUR);
Ejemplo
Resta 2 meses a una fecha y devuelve la fecha:
SELECT DATE_ADD("2017-06-15", INTERVAL -2 MONTH);