Mysql
 sql >> Database >  >> RDS >> Mysql

Aggiungi giorni alla data corrente da MySQL con PHP

Oltre alle soluzioni PHP fornite da altri, puoi creare il endDate direttamente all'interno di MySQL e risparmiati un po' di problemi:

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;

Documentazione pertinente qui.. .