I am finding out database construction is becoming more important. I am putting together a small database that has a lot of yes and no answers to it so I thought instead of entering Yes and No I could just 1 & 0
So what should I use
int(1) 1 = Yes 0 = No
Then I thought about using char
char 1 = Yes 0 = No
I looked at another database and I saw a field called
enum('Yes', 'No')