Hello,
Imagine my select result, where:
Columns = [id] [name] [a] [b]
results received:
[102] [John] [12] [5]
[102] [John] [12] [7]
[103] [Mary] [13] [8]
Look how i want to get:
[102] [John] [12] [5] [7]
[103] [Mary] [13] [8]
Selecting distincts 'ids', but putting a result in a different column.
How can i do it, please?
Thanks.