Viewing 3 posts - 1 through 3 (of 3 total)
Here's some sample data
CREATE TABLE dbo.Subscriptions (
SubscriptionId bigint identity(1,1) NOT NULL,
CustomerId varchar(12) NOT NULL,
...
May 3, 2013 at 9:20 pm
#1612361
In the scenario described it wouldn't matter which payment was meant for each subscription Id because the assumption is that the subscription doesn't capture any information besides the client id,...
May 3, 2013 at 5:57 pm
#1612352
Thank you for the reply!
In my haste to post the question I entered one row too many for subscriptions.
The scenario is that the two tables are populated with information coming...
May 3, 2013 at 9:33 am
#1612259