Have a look at this similar post:
https://knowledge.safe.com/questions/38771/can-i-use-a-feature-merger-to-merge-partial-names.html
Basically just expand the wildcard to something like
select *
from table_a join table_b on '%' || table_a.id || '%' like '%' || table_b.id || '%'
Just be aware that matching on substrings is relatively slow.
Have a look at this similar post:
https://knowledge.safe.com/questions/38771/can-i-use-a-feature-merger-to-merge-partial-names.html
Basically just expand the wildcard to something like
select *
from table_a join table_b on '%' || table_a.id || '%' like '%' || table_b.id || '%'
Just be aware that matching on substrings is relatively slow.
Impressive replay time :) InlineQuerier did the job!!!
Thank You
I had similar requirement. Solved using Inlinequerier
Sample below joins table SAP To LOC, where SAP.MatchedPlatform is a sub string in LOC.LOC_OTH_NAME_MATCH
creates
SELECT * FROM SAP LEFT JOIN LOC ON INSTR(LOC.LOC_OTH_NAME_MATCH, SAP.MatchedPlatform) > 0
Hope this helps