SQLite Full-text Search Index

I currently have a diagnostic table. I want to use FTS to search for code and description fields. As far as I know, the FTS table does not support indexing. I need to be able to find the diagnosis through the diagnostic ID very quickly. Do I have to create a second virtual table where all data is duplicated just for full text search, or I missed a solution where I don’t need to copy all the diagnostic codes and descriptions?

CREATE TABLE Diagnosis (
diagnosisID INTEGER PRIMARY KEY NOT NULL,
code TEXT,
collect INTEGER NOT NULL,
description TEXT
);

The result shows that the FTS table has a hidden rowid field , You can fill in this field when entering data:

sqlite> create virtual table test1 using fts3;
sqlite> insert into test1 values ​​("This is a document!");
sqlite> insert into test1(docid,content) values ​​(5,"this is another document");
sqlite> select rowid,* from test1;
1|This is a document!
5|this is another document

You can create an integer field in the standard table, which refers to the FTS table by rowid, and sets the column for text search Move to the FTS table.

All the information you need here

I currently have a diagnostic table. I want to use FTS to search for code and description fields. As far as I know, FTS table does not support index, I need to be able to find diagnosis by diagnosis ID very quickly. Do I have to create a second virtual table where all data is duplicated, just for full text search, or I missed A solution where I don’t need to copy all the diagnostic codes and descriptions?

CREATE TABLE Diagnosis (
diagnosisID INTEGER PRIMARY KEY NOT NULL,
code TEXT,
collect INTEGER NOT NULL,
description TEXT
);

The result shows that the FTS table has a hidden rowid field, which you can fill in when entering data: < p>

sqlite> create virtual table test1 using fts3;
sqlite> insert into test1 values ​​("This is a document!");
sqlite > insert into test1(docid,content) values ​​(5,"this is another document");
sqlite> select rowid,* from test1;
1|This is a document!
5 |this is another document

You can create an integer field in the standard table that references the FTS table by rowid, and move the column to be text searched into the FTS table.

All the information you need here

Leave a Comment

Your email address will not be published.