I have below data which I fetched from database by using Hibernate NamedQuery
  TXN_ID   END_DATE 
---------- ------------
       121 15-JUN-16
       122 15-JUN-16
       123 16-MAY-16 
Each row data can be store in Java class Object. Now I want to combined data depending on the END_DATE. If END_DATE are same then merge TXN_ID data.
From the above data output would be :
TXN_ID     END_DATE 
---------- ------------
121|122    15-JUN-16
123        16-MAY-16   
I want to do this program in java. What is the easy program for that?
 
     
     
     
    