'How can i add 4 more days to the current_timestamp on mysql

This is my table schema:

CREATE TABLE `Stoc URGENT` (
  `ID Produs` INT NOT NULL,
  `Data livrari` DATETIME ON UPDATE CURRENT_TIMESTAMP,
  -- other columns

How can I add 4 days to current_timestamp?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source