I have a list which has two elements {make, model}. I can receive multiple make, model in in this list. So, I can get values like:
{make = Toyota, model =camry},{make = Toyota, model =Prius} and so on.
I need to use these values create a sql in the format -
select * from cars where (make=toyota and model = camry) or (make = toyota and model - Prius);
How do I achieve this in FME? I dont know the no. of values that I will get in the list. Please advise, I am very new to FME