The In NotIn node has two inputs: inner table and outer table. The outer table is the table to be filtered. Columns of only this node will be propagated downstream. The inner table is the filtering table. |
A column of the outer table (outer column), will be matched against a column of the inner table (inner column) to filter records of the outer table.
Selecting the IN filter type returns only those records from the outer table where the outer column value exists in the list of values in inner column. Selecting Not IN filter type returns only those records from the outer table where the outer column value does not exist in the list of values in inner column.
Following are the steps to apply In NotIn node in pipeline: