I trying to use min function but it is not working when I try to see 3 columns. I have this table
And using MIN() function over Field_2, I want to get this output
My query is
SELECT FIELD_1, MIN(FIELD_2) FROM TABLE GROUP BY FIELD_1
If I add the column ID, I get all the same table.