I have the following problem when running a query in the inlinequerier: I have a table with textstrings (consisting of articles) in which a country name is provided. I also have a shapefile with all the countries and their names. Mr. Takashi has helped me a lot with following query:
select b.ARTICLE, a.COUNTRY_WORLD from Source as b cross join World as a where b.ARTICLElike '%'||a.COUNTRY_WORLD||'%'
In this query however, 'Nigeria' is for example also matched to 'Niger'. I was wondering if there was a way to query for an exact match of the country table inside the article?
I was thinking about using a REGEX instead of LIKE operator, but I do not seem to get this to work in FME.
Any suggestions on a new query or on how to use regex in FME?
Kind regards