Why is year = 1950 OR ID = 3 not equivalent to year IN (1950, 3)?

Because year = 1950 OR ID = 3 sets conditions on two different columnsBecause we can't use IN with number values

Because year = 1950 OR ID = 3 sets conditions on two different columns.