I'm doing full text search using sqlite and below are some select query examples that I'm using.
Ex:
SELECT * FROM table WHERE table MATCH 'column:father* OR for*' ORDER BY rank;
SELECT * FROM table WHERE table MATCH 'column:exam* AND yo*' ORDER BY rank;
These queries are not working properly. Giving me all the rows in the database as the result. I cannot use AND/OR with the Match operator when using asterisk. Any solutions?
Thanks.