如何从SQLite FTS3或FTS4表中选择除不需要的所有行?
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'没有按照预期工作。
https://stackoverflow.com/questions/41231415
复制相似问题