Viewing 2 posts - 76 through 77 (of 77 total)
Ron K's first solution is elegant and simple.
I would make one small change in the Order By clause.
Select min(ID) as ID, PathwayID
From #MyTable
Group By PathwayId
Order By PathwayID, ID
The original question...
May 27, 2005 at 7:34 am
#561472
To answer part of your question: When you have the first Temporal table imported, the code below will add new records to the existing table and add the records that...
May 25, 2005 at 7:12 am
#560941