This is a MySQL SET type, assuming that you can keep your dataset down to 64 items (or, use multiple sets based on other conditions).
I thought I would expand on my answer, because I think some people just don't understand the power of the set. Example table:
CREATE TABLE `Test` (
`setid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`setname` varchar(64) NOT NULL,
`setstate` set('AK','AL','AR','AZ','CA','CO','CT','DC','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY') NOT NULL,
PRIMARY KEY (`setid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
insert into `Test` values('1','test','AZ,CA,NJ,NM,NY,VA,VT');
Note that we use a single set field for states. More complex uses will likely require use of multiple sets, but the slightly more horizontal qword for each record may be cheaper than adding a large # of extra join operations on a lookup table that could easily reach a huge # of records on its on.
Below are 3 (functionally) equivalent pulls. Note that the bitmask is very much the fastest way to pull this data:
SELECT * FROM Test WHERE setstate & 1000;
For test #1, We use 1000 as the bitmask, because this corresponds to item #4 in our list (AZ). This is, by far, the fastest method... and there are few ways to store this data which will give you faster result potential.
SELECT * FROM Test WHERE setstate LIKE '%AZ%';
This method can use indexes, but will be somewhat slow because of the fuzzy match.
SELECT * FROM Test WHERE FIND_IN_SET('AZ',setstate);
This method will be faster than the fuzzy match, but its nature will pretty much require the use of a temporary table in most real-world uses.