Função MySQL ADDDATE()
Exemplo
Adicione 10 dias a uma data e retorne a data:
SELECT ADDDATE("2017-06-15", INTERVAL 10 DAY);
Definição e uso
A função ADDDATE() adiciona um intervalo de data/hora a uma data e retorna a data.
Sintaxe
ADDDATE(date, INTERVAL value addunit)
OU:
ADDDATE(date, days)
Valores de parâmetro
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:
|
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Adicione 15 minutos a uma data e retorne a data:
SELECT ADDDATE("2017-06-15 09:34:21", INTERVAL 15 MINUTE);
Exemplo
Subtraia 3 horas a uma data e devolva a data:
SELECT ADDDATE("2017-06-15 09:34:21", INTERVAL -3 HOUR);
Exemplo
Subtraia 2 meses a uma data e devolva a data:
SELECT ADDDATE("2017-06-15", INTERVAL -2 MONTH);