Depends on your database, but most of them have a function called date_add() or some such that you can use like this:
update myTable set myDate = date_add(now(), interval 2 days);
Or some such, you should look up the proper syntax in your database documentation.