Hi,
we have a document like below,
{
“CtryCd”: “157”,
“CustDsplyNm”: “BP HP”
}
we would like to query on the CustDsplyNm field with LIKE query, for example CustDsplyNm like “%HP” or CustDsplyNm like “BP%”
also we are thinking to use CONTAINS_TOKEN_LIKE(CustDsplyNm ,"%HP")
Is it a way to do this? also what is the optimum way to create index for these kind of queries?
Thanks