Match all words in any order but duplicates consider as individual

Hi,

We have a text field which matches words in any order but when duplicate comes still both words need to exist.
Below is my query and results

"query": {
        "match": {
            "field": {
                "operator": "and",
                "query": "2019 1 Scc 1"
            }
        }
    }

wrong results : 2019 6 SCC 1, 2019 5 SCC 1,SCC 1 2009 6
correct result : 1 2019 Scc 1

Is their any solution for this.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.