I want to store 4 boolean possibilities in a single value. For e.g., I want a single value that tells whether a person is:
IsSingle
IsGraduate
IsMale
IsLookingForPartner
So is it good to store them in a byte, whose 4 bits may be allocated, one for each parameter. If the bit is set to 1 then that boolean parameter is true. So I can do bit shift operations to find what all are true. if value of byte is 111 then first three parameters are true. Is it a good way? Is there a better way to implement this ?
I need to store this value as a single parameter in the database.