I have a table in MySQL. What would be the sql statement look like to add say 2 days to the current date value in the table?
UPDATE classes SET date = date
SELECT DATE_ADD(CURDATE(), INTERVAL 2 DAY)