Displaying 1 result from an estimated 1 matches for "fnamebar".
Did you mean:
fnamebak
2014 May 17
2
Search for exact match on document
...following:
I have db with a field "name":
1 with name="foo"
2 with name="foo bar"
3 with name="foo bar for you u2".
I index this in the database using a prefix FNAME indicating the field
where the strings belong to.
delve -a returns something like
FNAMEfoo FNAMEbar ...
My question is: how can I can query by name the entry 2 without matching
entry 1 nor 3?
I tried using Query((FNAMEfoo PHRASE 2 FNAMEbar)) but this is returning me
two entries (naturally).
I know that, for obtaining the entry 1 alone, I can query Query('"XNAME8"')
(i.e. usin...