Or, you could run two simple UPDATES:
UPDATE TableA SET DateColumn = DateColumn + 2
WHERE TO_CHAR(DateColumn, 'Day') = 'Saturday'
UPDATE TableA SET DateColumn = DateColumn + 1
WHERE TO_CHAR(DateColumn, 'Day') = 'Sunday'
Main Topics
Browse All TopicsI have a table which has a date field. In my store procedure, I need to check if the data of this field is Sunday or Saturday. If it is, I need to update it to coming monday. Otherwise, it keeps same. Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: jaramillPosted on 2004-09-14 at 19:39:35ID: 12061045
I'll post a generic example:
'Day') = 'Saturday') THEN
te, 'Day') = 'Sunday') THEN
DECLARE
CURSOR my_cur IS
SELECT *
FROM my_table
FOR UPDATE;
BEGIN
<<my_loop>>
FOR my_rec IN my_cur LOOP
IF(TO_CHAR(my_rec.my_date,
UPDATE my_table
SET my_date = my_date + 2
WHERE CURRENT OF my_cur;
ELSIF(TO_CHAR(my_rec.my_da
UPDATE my_table
SET my_date = my_date + 1
WHERE CURRENT OF my_cur;
END IF;
END LOOP my_loop;
COMMIT WORK;
END;