views:

49

answers:

1

I am new to all this so looking for some help. Sorry if the question is really novice. I am learning all of the char, varchar, etc.

+1  A: 

Try BOOL. (It's an alias for TINYINT(1).)

If the MySQL server is at least version 5.0.3, you can also use BIT (or BIT(1), same thing).

You'd probably benefit from checking out some of the docs.

chaos
Exactly what I was looking for. Thanks.
bgadoci