Función MySQL ADDDATE()
Ejemplo
Agregue 10 días a una fecha y devuelva la fecha:
SELECT ADDDATE("2017-06-15", INTERVAL 10 DAY);
Definición y uso
La función ADDDATE() agrega un intervalo de hora/fecha a una fecha y luego devuelve la fecha.
Sintaxis
ADDDATE(date, INTERVAL value addunit)
O:
ADDDATE(date, days)
Valores paramétricos
Parameter | Description |
---|---|
date | Required. The date to be modified |
days | Required. The number of days to add to date |
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 ADDDATE("2017-06-15 09:34:21", INTERVAL 15 MINUTE);
Ejemplo
Resta 3 horas a una fecha y devuelve la fecha:
SELECT ADDDATE("2017-06-15 09:34:21", INTERVAL -3 HOUR);
Ejemplo
Resta 2 meses a una fecha y devuelve la fecha:
SELECT ADDDATE("2017-06-15", INTERVAL -2 MONTH);