Use IN to code a condition equivalent to year = 1992 OR year = 2011.
IN
year = 1992 OR year = 2011
Make sure to type year IN (1992, 2011).
year IN (1992, 2011)