How to select all rows except unneeded from SQLite FTS3 or FTS4 table?
select * from table where table match 'column:NOT phrase'
select * from table where table match 'column:-phrase'
select * from table where table match 'column:* NOT phrase'
not working as expected.