Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Adicionar dias à data atual do MySQL com PHP


Além das soluções PHP que outros estão fornecendo, você pode criar o endDate dentro do MySQL e economize alguns dos problemas:
SELECT startDate, DATE_ADD(startDate, INTERVAL 60 DAY) AS endDate FROM table;

-- Or by months (not exactly the same thing)
SELECT startDate, DATE_ADD(startDate, INTERVAL 2 MONTH) AS endDate FROM table;

Documentação relevante aqui.. .