T-SQL: Calculating number of weekdays between two dates

Tonight someone tweeted trying to find a ColdFusion or SQL solution to counting the number of weekdays (excluding Saturdays and Sundays) between two dates. Most of the solutions online involving looping over the date range and adding to a counter if that iteration of the loop is a weekday.

That’s fine for small ranges, but not if you need to test dates that span many years. Anyway, here’s a SQL solution. It’s late, so hopefully the comments in the code suffice. It should be straightforward to rewrite this in ColdFusion.

T-SQL: Calculating number of weekdays between two dates Read More »