SQL Server "Group By" for an interesting case
- by stckvrflw
Hello,
I have a table like that
1 A_Team 11
2 A_Team 3
3 B_Team 2
4 A_Team 1
5 A_Team 1
What I want is grouping the same named teams which are also sequential teams
So the result table should look like
1 A_Team 14
2 B_Team 2
3 A_Team 2
Thanks