0
Well, I’m making a site that when the person creates a request, show the data_today that would be in the database using SQL NOW(); that I know and how do I add a data_finalize for example in 1 month, 7 days? in an SQL? EXAMPLE: today is 02/09/2021 + 1 Month = 02/10/2021 ! Thanks in advance for trying to help <3
https://www.w3schools.com/mysql/func_mysql_date_add.asp
– Motta
DATE_ADD("2017-06-15 09:34:21", INTERVAL 1 MONTH) - direct from Mysql functions documentation
– epx