We can't replace with IN the condition major = 'History' OR major <> 'Physics', since both operators need to be =.
IN
major = 'History' OR major <> 'Physics'
=
Make sure to pick major, followed by <>, and finally 'Physics'.
major
<>
'Physics'