Hallo
we have some Document with a SET of Multivalues, e.g.
SET: Range
therein Multivalue Rows with the 2 Attributs Start and Stop
So we have Documents valid for Range 10...20 AND 50...60 which ends in 2 Rows in the SET:
Start:10 Stop: 20
Start 50 Stop: 60
We need now to Search, if a Document is in a given Range, e.g.:
Search for 12: Document should be in the result, because it's in the first range 10...20
Serach für 55: Document should be in the result, because it's in the second range 50...60
Search for 40: Document should NOT be in the result, because it's nor in the first range 10...20 nor in the second range 50...60
How to do that?
By using something like “Attr_XXXXXXX_1: < 12” and “Attr_XXXXXXX_2: > 12” i get also results for 40, so it looks like ContentServer searches for "one of the first Multivalue Attibut" < x < "one of the second Multivalue Attribut" and does not search "within the same row"
Thomas