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
SELECT word FROM table WHERE word NOT LIKE '%a%' AND word NOT LIKE '%b%' AND word NOT LIKE '%c%';