Hey ,
I have a trouble for a following requirements:
SELECT Name
from Contacts
where name like 'FIRST_WORDS%SECOND_WORDS%'
e.g. if I intput "Hen Mi", it should return the result including 'Henry Michael'.
However, if I use wildcard in ES, i.e. wildcard:{"Name","HenMi"}, ES will regard Hen*Mi as one term to find the match. It will only return the result like 'Henimial ke' for example.
Could anyone can help?Thanks.