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 use Sqlite's REGEXP support ( see the answer at Problem with regexp python and sqlite for how to do that ) , then you can do it easily in one clause:
SELECT word FROM table WHERE word NOT REGEXP '[abc]';