QUESTION POSED ON: 16 February 2007
How can I update the first row of a group?
I have a table like this structure:
col1 col2
1 row1 *
2 row1
3 row1
4 row2 *
5 row2
6 row2
I want to update the col1 field of the record with *. That means I need to update the first row of the distinct col2 field.
How can I do this with SQL Server 2000?
|