Given ~50,000 records with two datetime fields representing start and end times for each row, how do I write an SQL Server query to build a histogram with buckets of arbitrary time spans between the start and end dates, e.g. 30 minutes, 0-1 hours, 1-2 hours, 2-4 hours, 4-8 hours, 8-24 hours, 24-48 hours, 48-72 hours, 3-5 days, 7+ days?
I'm hoping there is a clever way to avoid executing a query for every bucket (10 in this case). I'm using LINQ-to-SQL as a light ORM, but raw SQL would be fine too.
My naive approach would be to first bucket everything by 60 minutes, then perform a subquery to pull out each irregular bucket.
Edit: Bonus points for the LINQ version since I just learned it is possible to generate CASE statements in LINQ. Any performance considerations between a duration table and CASE statements?