I am trying to search 2 separate columns called keyword
and keyword2
for a match. Can this be done with SQLite FTS?
I've tried this statement but it did not work:
String sql = "Select * from tblvHAL2001 WHERE tblvHAL2001 MATCH 'keyword:" + question + "' OR MATCH 'keyword2:" + question +"'";