The otherwise identical rows here can sometimes differ by a numerical value of one column, let's call it Group
:
Col1 | Col2 | ..... | Group |
---|---|---|---|
A | B | 100 | |
A | B | 200 | |
A | C | 100 | |
A | D | 200 |
For a particular value of group
, how do I select only the rows, for which it is the minimal one?
In the above listing, for example, group
200 shall only return one row -- the fourth one -- because the second row is also a member of group 100, and thus shall not be listed under the 200...