sorry, i'll try and explain again. I mean that I only want to have the option to enter one of two values into that column, either yes or no. So you would be unable to enter anything else into this column. I could set the default value to say 1 or 0 and 1 would effectively be yes and 0 no.
My question is how do I set up the column to only allow 0 and 1 to be entered? Ie I dont want it to allow me to enter any other number, only 0 and 1.
Hope thinks makes more sense.
EDIT: I was just playing around with the type column (varchar(), date etc) in phpmyadmin and found ENUM. Does this allow me to enter only 1s and 0's if I set the type to ENUM('0', '1')?