Reputation: 121
I am trying to add 14 days to the data that ranges from 01-JAN-2011 to 12-DEC-2018. Below is the query I wrote.
update (RENTAL_DATE +14) where RENTAL_DATE between '01-JAN-17' and '12-DEC-18'from MRE_COMP_DATA;
RENTAL_DATE IS A DATE COLUMN AND WE WANT TO ADD 14 DAYS TO IT.
Please let me know what I am doing wrong here.
Upvotes: 0
Views: 57