I am getting technically distinct records since one of the fields is different, but I don't want all of them, just the one with the largest number in it.
Here is an example of what my current sql statement is returning:
field1, field2, field3
apple, fruit, 50
apple, fruit, 43
apple, fruit, 32
orange, round, 56
orange, round, 43
orange, round, 31
I want to return the first (largest number) of each, so it returns:
apple, fruit, 50
orange, roound, 56
thanks,
Ed
Here is an example of what my current sql statement is returning:
field1, field2, field3
apple, fruit, 50
apple, fruit, 43
apple, fruit, 32
orange, round, 56
orange, round, 43
orange, round, 31
I want to return the first (largest number) of each, so it returns:
apple, fruit, 50
orange, roound, 56
thanks,
Ed