I currently have full text search implemented. FTS currently segments if there's dashes. I was wondering if there's a way to NOT segment for dashes.
record 1 - Apples,Pears,Blood-Oranges
Record 2 - Oranges
I want to return all records where the field doesn't contain Oranges. In the example it should only return record 1 but it turns no records.
SELECT taglist, *
FROM contacts
WHERE NOT Contains (taglist, '"Orange"')