According to SQLite documentation I can write:
SELECT * FROM docs WHERE docs MATCH 'title:linux problems';
Where title is a column name. Is it possible to create something like:
SELECT * FROM docs WHERE docs MATCH 'ignore:linux problems';
To search in all table excluding the linux column?
You can search only in one column or in all columns.
You could try to list all columns except the one you want to ignore: