Is there a way to only output documents which contains n
matches of a search term in it?
F.e. I want to output all documents containing the search term "Pablo Picasso" | "Picasso Pablo"
at least two (three, n) times.
How would such a query look like?
My current query is:
SELECT * FROM myIndex WHERE MATCH('"Pablo Picasso" | "Picasso Pablo"');