Why is year >= 1950 OR year <= 1970 not equivalent to year IN (1950, 1970)?

Because the conditions don't use the = operatorBecause the IN is not a valid keyword

Because the conditions don't use the = operator.