Answers for "how to add 1 year in date mysql"

SQL
5

mysql where one year ago

select * 
from orders 
where order_date >= DATE_SUB(NOW(),INTERVAL 1 YEAR);
Posted by: Guest on April-28-2020
0

mysql add days to date

UPDATE classes 
SET `date` = DATE_ADD(`date` , INTERVAL 2 DAY)
WHERE `id` = 161;
Posted by: Guest on September-02-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language