Shopsland gmail wrote:
> 
>    select title from fts_news where fts_news match 'ined'
> 

It looks that you only want to query the title field, so the query should
be:
select title from fts_news where title match 'ined'
or
select title from fts_news where fts_news match 'title:ined'
-- 
View this message in context: 
http://www.nabble.com/FTS3-phantom-token-...-tp25594632p25629682.html
Sent from the SQLite mailing list archive at Nabble.com.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to