SELECT * from table where NOT category = 'ignored category';
SELECT * from table where category != 'ignored category';
SELECT * from table where category <> 'ignored category';
SELECT * from table where category NOT LIKE 'ignored category';
Probably others I can't think of right now.