Viewing 6 posts - 16 through 21 (of 21 total)
The coalesce function will use the next column value if the first one is null, thereby doing much the same thing accomplished with using case statements as suggested earlier. As...
April 2, 2009 at 12:46 pm
Mr. Morris, if the question you are referring to is the one about the row with "3, 0, 9".
"The values always increment across the row such that, when the rows...
April 2, 2009 at 11:04 am
The values always increment across the row such that, when the rows are in order, the values in all columns also increment top to bottom. There are random cells that...
April 2, 2009 at 8:16 am
I'm not making judgements or trying to insult anyone's intelligence, but the sample I posted should be self explanatory. It's the people who can look at the example and fully...
April 1, 2009 at 1:58 pm
CREATE TABLE #one (id INT)
CREATE TABLE #two (id INT)
INSERT INTO #one VALUES (1)
INSERT INTO #one VALUES (3)
INSERT INTO #one VALUES (5)
INSERT INTO #one VALUES (6)
INSERT INTO #two VALUES (1)
INSERT INTO...
April 1, 2009 at 1:31 pm
Viewing 6 posts - 16 through 21 (of 21 total)