I have a sqlite3 query like:
SELECT word FROM table WHERE word NOT LIKE \'%a%\';
This would select all of the words where \'a\' does not oc
If you have any problems with the "not like" query, Consider that you may have a null in the database. In this case, Use:
IFNULL(word, '') NOT LIKE '%something%'