Tagged Questions
1
vote
1answer
100 views
Finding StartDate,EndDate from overriding StartDates
I have two tables with the following (simplified) structures:
table "Factors" which holds data about purchased goods' factors and has these columns:
FactorSerial, PurchaseDate, PurchasedGood
table ...
0
votes
1answer
172 views
SQL Date Range comparison Clash for Resource Bookings Repeated Results
I am querying a booking table to see if I have a Resource Clash.
The query joins to the same table twice similar to this answer:
http://stackoverflow.com/a/2727467/578451
However I get duplicate ...
1
vote
1answer
730 views
T-SQL query to find missing IDs for a date range
Given these tables
table Channel
--------------
ChannelID int IDENTITY
<other irrelevant stuff>
table Program
--------------
ProgramID int IDENTITY
ChannelID int
AiringDate datetime
...
4
votes
6answers
10k views
SQL join against date ranges?
Consider two tables:
Transactions, with amounts in a foreign currency:
Date Amount
========= =======
1/2/2009 1500
2/4/2009 2300
3/15/2009 300
4/17/2009 2200
etc.
...