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?
Try this:
`Data livrari` DATETIME ON UPDATE DATE_ADD(CURRENT_TIMESTAMP, INTERVAL 4 DAY)