sql >> Base de Datos >  >> RDS >> Mysql

Agregue días a la fecha actual desde MySQL con PHP

Además de las soluciones PHP que otros proporcionan, puede crear el endDate justo dentro de MySQL y ahórrese algunos 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;

Documentación relevante aquí.. .