Following is the CSV file which I am using:
I want to extract individual string from "Cast" column e.g. "Zareen Khan".
My Requirement:
- Extract comma separated string from "Cast" column.
- Get its "id" from mysql DB. (select id from table_name where name = "Zareen Khan")
- Pass "id" in next api's Url param.
Note: Above steps will be iterative for each row in CSV file i.e. After "Zareen Khan", follow above steps for "Karan Kundra", "Tobby Hinston", "Sonia Armstrong" etc.
