Viewing 4 posts - 1 through 4 (of 4 total)
Sorry Lynn, I didn't see your solution before posting my version of the same thing.
I find it strange that TSQL doesn't have built-in cross-tab query functionality whereas Access does. It's...
November 27, 2009 at 7:16 am
Sorry Mark, I didn't see your solution before posting my version of the same thing.
I find it strange that TSQL doesn't have built-in cross-tab query functionality whereas Access does. ...
November 27, 2009 at 7:05 am
How does this approach work for you:
--first a temp table and data to test with:
Create Table #Products (ID int, Description varchar(30))
INSERT INTO #Products (ID, Description)values (1, 'Hairy')
INSERT INTO #Products (ID,...
November 27, 2009 at 6:57 am
Thanks Mr. Magoo.
I think the problem I'm seeing in approach 2 is due to the left joins' "on" statements. For example, when the filter Na.Number < Nb.Number can be...
November 27, 2009 at 6:13 am
Viewing 4 posts - 1 through 4 (of 4 total)