Below you can find my table with values (there are no constraints on my table):
SELECT DISTINCT * FROM khalil;
outputs:
ID VALUE -- ------- 1 yassine 1 khalil 2 amine
I need to get the first row when I have duplicate values.
I have two rows with id = 1
so, in this case, I need that the first one,
which is id = 1
and value = 'yassine'