- Doing a SQLite MATCH using only negated terms
- SELECT * FROM fruit WHERE fruit MATCH '-apple'
- SELECT * FROM fruit WHERE fruit MATCH 'pear -apple'
- select * from fruit where fruit NOT match 'apple'
- select * from fruit except select * from fruit where fruit match 'apple';