Tagged Questions
0
votes
1answer
27 views
how to test if time range has x number of laps
I'm trying to solve a 'decaying' puzzle that goes somewhat like this:
given A is 100 at DateTime.new(2012,5,10,0,0,0) and is decaying by 0.5 every 12 seconds, has it decayed exactly 20 by ...
5
votes
4answers
1k views
Fastest way to split overlapping date ranges
I have date range data in SQL DB table that has these three (only relevant) columns:
ID (int identity)
RangeFrom (date only)
RangeTo (date only)
For any given date range, there may be an arbitrary ...
2
votes
2answers
2k views
Date Range Intersection Splitting in SQL
I have a SQL Server 2005 database which contains a table called Memberships.
The table schema is:
PersonID int, Surname nvarchar(30), FirstName nvarchar(30), Description nvarchar(100), StartDate ...