I have an attribute table in which each record contains the name of a state as well as several other characteristics. I want to select all states that are named in a subset.
I tried this:
"NAME" IN (‘Florida', 'Kentucky', 'Tennessee', 'Georgia', 'North', 'Carolina', 'South', 'Carolina', 'Alabama', 'Mississippi', 'Louisiana', 'Texas’)
The return was this:
Expression is invalid. Parser Errors: syntax error, unexpected STRING, expecting COMMA or ')' syntax error, unexpected NAME, expecting end of file syntax error, unexpected STRING, expecting end of file syntax error, unexpected NAME, expecting end of file syntax error, unexpected STRING, expecting end of file syntax error, unexpected NAME, expecting end of file syntax error, unexpected STRING, expecting end of file syntax error, unexpected NAME, expecting end of file syntax error, unexpected STRING, expecting end of file syntax error, unexpected NAME, expecting end of file
I've messed around trying various things, like removing formatting & so on.
What do I have to change in order to get this to work?