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
UPDATE table SET nameofdatefield = ADDDATE(nameofdatefield, 2) WHERE ...