Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rboccuzziI think you meant that you wanted to output the second row (buffallo == buffallo, not cat == dog).
If that is what you meant, you can do this with a simple filter or split node. For a filter node, you would just say
emit *
where 'Field_NM1' == 'Field_NM3'
the where statement will restrict the output to only those records where your expression is true.
If you would like to use a split node so you can see all the records that passed and those that failed, you would just put:
'Field_NM1' == 'Field_NM3'
Inside the condition parameter, and all those on output 1 would have the same value in the two fields, and those on output 2 would have different ones.
Cheers
Rich