I am working on full text search
on sqlite
using fts4
.
In my DB I have a normal table Notes
and it contains 33 records
.
I created a virtual table using fts4
like this
CREATE VIRTUAL TABLE t3 USING fts4(content="Notes", user_notes);
I am querying it like this
SELECT user_notes FROM t3 WHERE user_notes MATCH 'important'
And this
SELECT user_notes FROM t3 WHERE t3 MATCH 'important'
But non of the query is working, Why? I am getting empty result no error.