Skip to content
Advertisement

Tag: dateinterval

MYSQL Add working days to date

I want to add 5 days to the provided date, but the calculation must skip weekends. I already know how to add 5 days without skipping weekends: SELECT DATE_ADD(`date_field`, INTERVAL 5 DAY) As …

Advertisement