For example if one: I want to merge a feature with an attributevalue that is called "East Dartmoor" to a feature with an AttibuteValue called "East Dart". Would it be possible to add a wildcard to the feature merger?
Solved
Can i use a feature merger to merge partial names together?
Best answer by david_r
No, the FeatureMerger can only merge on complete values.
But you can use the InlineQuerier with something like
select *
from table_a join table_b on table_a.id || '%' like table_b.id || '%'
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.