My source is like
emp_id name sal
101 tina 10000
102 mega 10000
103 meena 5000
I need the details of the employees 101 and 102 details:---like this
emp_id name sal
101 tina 10000
102 mega 10000
My source is like
emp_id name sal
101 tina 10000
102 mega 10000
103 meena 5000
I need the details of the employees 101 and 102 details:---like this
emp_id name sal
101 tina 10000
102 mega 10000
Read the data, use Aggregator to find max value, and join the max with the original data set.