I’m relatively to SQLite3 so I want to make a query that makes a multi-word search, I’ve tried using Match Against to make a full text search, as it can be done in MySQL, but it didn’t work since SQLite3 doesn’t support this type of queries. so I would like to know how can this be done, and also if SQLite3 have some especial commands to make more complex queries. any help would be greatly appreciated.
I’ve looked for a while into SQLite documentation but no luck 🙁
SELECT product,category FROM products
WHERE MATCH(product,category) AGAINST ('text')
If you are looking for MATCH specific type searches:
http://www.sqlite.org/fts3.html#section_3
However, if you need to simply get results:
http://sqlite.org/lang_expr.html#like