I have a table that has dates. I have another table of holidays.
I want to update the table with dates by 1 day if the day is a holiday.
Below is a query that is giving me a "Operation must use an updateable query" error.
Swi
I want to update the table with dates by 1 day if the day is a holiday.
Below is a query that is giving me a "Operation must use an updateable query" error.
Code:
UPDATE Dates SET Dates.OutputDate = Dates.InputDate + (SELECT count(*) FROM Holiday WHERE Dates.InputDate BETWEEN Dates.InputDate AND Dates.InputDate);
Swi