You need to find all students that are not on the "Chemistry Cats" team. Which query does NOT work for this task?
:
WHERE team NOT 'Chemistry Cats';
WHERE team <> 'Chemistry Cats';
WHERE team != 'Chemistry Cats';
WHERE NOT team = 'Chemistry Cats';