I have two csv files employee.csv and loan.csv.
In employee.csv I have four columns i.e. empid(Integer),name(String),age(Integer),education(String).
In loan.csv I have three columns i.e. loan(Double),balance(Double),empid(Integer).
Now, I want to merge these two csv files into a single csv file by empid column.So in the result.csv file the columns should be,
- empid(Integer),
- name(String),
- age(Integer),
- education(String),
- loan(Double),
- balance(Double).
Also I have to achieve this only by using kettle api program in Java. Can anyone please help me?
