I have a scenario where I need to insert few records into database. I have analyzed and confirmed that only script component can help me.
Since I cannot give the exact data, I will explain the flow using sample data.
The main flow has employee records and employee id is the key.
there is a complex query which gets the row id based on rank and here the where clause should have employee id hard coded. Below is the sample only.
Select emp_name, location, designation from employee where emp_id = ? ;
My question is, how can I pull multiple values from query in script component ?