External content in FTS4 SQLITE
问题 I have a VIEW view_for_search_unit and a FTS4 table FTS_table_search_unit . I inserted data from view_for_search_unit into the FTS table using this command: INSERT INTO FTS_table_search_unit(docId, name, description) SELECT id, name, description FROM view_for_search_unit After I check data in FTS table using this: SELECT *FROM FTS_table_search_unit it has 1000 perfect records(I use fake data). However, when I use the MATCH function in FTS: SELECT * FROM FTS_table_search_unit WHERE FTS_table