S
svenki15
I have a table as under
Team Name Position
Team 1 56
Team 1 108
Team 1 65
Team 2 44
Team 2 106
Team 2 34
Team 3 1
Team 3 32
Team 3 65
I want to extract the first two position of each team. Using a grouped by
query and Max in Total rows i get only the max position not the max and the
next highest position. I want my result to look as under
Team Name Position
Team 1 65
Team 1 56
Team 2 34
Team 2 44
Team 3 1
Team 3 32
Please help
Team Name Position
Team 1 56
Team 1 108
Team 1 65
Team 2 44
Team 2 106
Team 2 34
Team 3 1
Team 3 32
Team 3 65
I want to extract the first two position of each team. Using a grouped by
query and Max in Total rows i get only the max position not the max and the
next highest position. I want my result to look as under
Team Name Position
Team 1 65
Team 1 56
Team 2 34
Team 2 44
Team 3 1
Team 3 32
Please help