我有一個5列的表。其中兩個是文字。我想爲這兩列使用fts。 我有一張包含所有5列或只有兩列的fts表,我該如何設置?如何在android中設置sqlite fts
注意:我發貨自己的數據庫沒有從代碼創建一個。
我有一個5列的表。其中兩個是文字。我想爲這兩列使用fts。 我有一張包含所有5列或只有兩列的fts表,我該如何設置?如何在android中設置sqlite fts
注意:我發貨自己的數據庫沒有從代碼創建一個。
Lets Start DBMS
For Create table : `CREATE VIRTUAL TABLE book USING fts4 (id, author, title, excerpt);`
Select Table:
SELECT * FROM book WHERE excerpt MATCH 'best NEAR worst';
Insert int table:
INSERT INTO pages(rowid, docid, title, body) VALUES(1, 2, 'A title', 'A document body');
欲瞭解更多請參考以下鏈接 1. http://www.phparch.com/2011/11/full-text-search-with-sqlite/ 2. http://www.sqlite.org/fts3.html
這是文件中的所有解釋:http://www.sqlite.org/fts3.html – NuSkooler 2013-02-15 04:19:35