I have the table in below format,
schemecode TotalValue DateVal
A 1 2014-07-09
AA 1 2014-07-09
AAA 1 2014-09-25
AAB 1 2014-09-24
ABC 1 2014-09-25
ABD 1 2014-08-25
I need the result like below format,
schemecode TotalValue DateVal
A,AA 2 2014-07-09
AAA,ABC 2 2014-09-25
AAB 1 2014-09-24
ABD 1 2014-08-25
Thanks in Advance.