Why is year = 1950 OR ID = 3 not equivalent to year IN (1950, 3)?
year = 1950 OR ID = 3
year IN (1950, 3)
IN
Because year = 1950 OR ID = 3 sets conditions on two different columns.