I want to update all the rows after the first row for each Team.
TableName: Test
ID , Team , StartTime, EndTime, TotalTime
1....... A.........18:00.........20:00..........2:00
2....... B.........18:00.........20:00..........2:00
3........A.........18:00.........20:00..........2:00
4........F.........18:00.........20:00..........2:00
5........B.........18:00.........20:00..........2:00
UPDATE TEST SET StartTime = DateAdd(SECOND, - ProjectedTime * 60, EndTime)
So here, I want to update row 3 and row 5 (as they are not first records based on team)
How do i achieve this?