I just need to SELECT Distinct values from columnA then ADD the values that has joined to columnB
Sample:
columnA | columnB
A 3
B 4
A 3
A 2
B 1
C 3
Result:
columnA | columnB
A 8
B 5
C 3
i found this but it just have the array of column names as parameter.
is there any other way or a sample using DataTable.Select()
Thanks in advance