I was also going to suggest bitflags as above. You can also check for combinations, such as which records contain married veterans (with or without drivers license)
SELECT * FROM Table WHERE Flags & (1 | 2) = (1 | 2)
or those records that are only married veterans without drivers licenses
SELECT * FROM Table WHERE Flags = (1 | 2)