0
如何從SQLite FTS3或FTS4表中選擇除不需要的所有行?只有Sqlite FTS3/4不搜索
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'
不按預期工作。
是您的庫編譯爲標準或增強的查詢語法? –
這是來自NuGet - System.Data.Sqlite Core的標準庫。我認爲,它是用標準語法編譯的。我可以手動編譯它,但是請告訴我,什麼是「enchanced語法」,哪些查詢語法會幫助我? – devspec
我沒有寫出額外的「c」。閱讀[精美文檔](http://www.sqlite.org/fts3.html#full_text_index_queries)。 –