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
2009-10-24 00:33:17
Exactly what I was looking for. Thanks.
bgadoci
2009-10-24 00:37:45