Add two columns together using apache-nifi
问题 I have following scenario. I one database table I have : | id | name | basic_salary | allowance | _______________________________________| | 1 | sach | 2000 | 1000 | | 2 | nala | 5000 | 2500 | |______________________________________| add basic_salary and allowance togther and making it as net_salary and insert to a new table called net_salary For first step, I used ExecuteSQLRecord processor and can get all the records. But problem is : How to add those two columns coming in flowfile. So