如何从 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'
没有按预期工作。
如何从 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'
没有按预期工作。