Viewing 8 posts - 1 through 8 (of 8 total)
I think you should look into normalizing (splitting the strings so that each value has it's own row) the BID and BWG columns in the #MD table so that you...
October 31, 2014 at 3:22 am
You need to include your date parameters in the WHERE clause of the appropriate dataset query e.g.
SELECT DISTINCT
ClaimDetail.PlanPaid
ClaimDetail.Count
ClaimDetail.Account
FROM
ClaimDetail
WHERE (ClaimDetail.Account = @account)
AND ClaimDetail.PlanPaid BETWEEN @startDate AND @endDate
Assuming...
August 11, 2014 at 2:54 am
Try this:
Be sure to check out the requirements and get version 1.7.0 of the MongoDB C# driver. The component can be a little slow, and due to the nature...
August 8, 2014 at 8:14 am
I think if I understand you correctly then the short answer is: Not easily.
The idea above is good, but I'm not sure you can use an expression to populate the...
June 13, 2014 at 1:51 am
No problem, happy to help 🙂
In case you wanted to extend this to see how many months people pay for in subsequent payment periods, you can change the last part...
January 10, 2014 at 9:00 am
Hey there,
This solution gives you what you've described, but with different output columns:
--First I use LAG to find where a new payment period begins by checking the months between the...
January 10, 2014 at 4:18 am
Many thanks to both of you - both options work and have given my brain the kick in the right direction it needed at this end of the week! 🙂
September 5, 2013 at 7:47 am
Sure, here you go:
CREATE TABLE Request
(
RequestId INT NOT NULL,
EmailAddress VARCHAR(50) NOT NULL
);
CREATE TABLE Quote
(
QuoteId INT NOT NULL,
...
September 5, 2013 at 6:10 am
Viewing 8 posts - 1 through 8 (of 8 total)