Since MySQL doesn't seem to have any 'boolean' datatype, which datatype do you 'abuse' for storing true/false information in MySQL? Especially in the context of writing and reading from/to a PHP-Script.

Over time I have used and seen several approaches:

  • tinyint, varchar fields containing the values 0/1,
  • varchar fields containing the strings '0'/'1' or 'true'/'false'
  • and finally enum Fields containing the two options 'true'/'false'.

None of the above seems optimal, I tend to prefer the tinyint 0/1 variant, since automatic type conversion in PHP gives me boolean values rather simply.

So which datatype do you use, is there a type designed for boolean values which I have overlooked? Do you see any advantages/disadvantages by using one type or another?

link|improve this question
5  
Anyone who is reading the old answers to this question needs to understand that MySQL added a bit datatype in version 5. Use that information as you may. dev.mysql.com/doc/refman/5.0/en/bit-type.html – smp7d Feb 29 at 14:51
First tinyint is not a varchar field as you implied above. Do you mean that bigint is a varchar field too? Second, I recommend tinyint for storing boolean fields no reasons though. – bogonko Apr 2 at 5:11
feedback

8 Answers

up vote 113 down vote accepted

According to the MySQL manual you can use bool and boolean which are at the moment aliases of tinyint(1):

Bool, Boolean: These types are synonyms for TINYINT(1). A value of zero is considered false. Non-zero values are considered true.

MySQL also states that:

We intend to implement full boolean type handling, in accordance with standard SQL, in a future MySQL release.

BTW: this is just a matter of http://www.google.ch/search?q=mysql+boolean+datatype.

link|improve this answer
1  
Yeah, I'd go for either this or, for a CHAR(1) and store 'Y'/'N' or 'T'/'F' etc. depending upon the context. The advantage of using a small integer type is that you get maximum portability across RDBMS-es – Roland Bouman May 15 '10 at 22:42
4  
Going for char, in PHP at least, will lead to more code as !$boolean will never evaluate properly without further processing. – Mild Fuzz Jun 1 '11 at 20:58
What about BIT(1)???? – BMiner Dec 6 '11 at 19:21
You could use BIT(1) but then you'd need to cast it to bool which is not nice. – markus-tharkun Dec 6 '11 at 19:25
feedback

BOOL and BOOLEAN are synonyms of TINYINT(1). Zero is false, anything else is true. More information here.

link|improve this answer
feedback

I use TINYINT(1) in order to store boolean values in Mysql.

I don't know if there is any advantage to use this... But if i'm not wrong, mysql can store boolean (BOOL) and it store it as a tinyint(1)

http://dev.mysql.com/doc/refman/5.0/en/other-vendor-data-types.html

link|improve this answer
That is right. As we all know that a single bit of digital information can either be true or false. so by all means we can use a tiny int for storing Boolean value. OBVIOUSLY. – Jayapal Chandran Sep 13 '10 at 8:01
feedback

If you use the BOOLEAN type, this is aliased to TINYINT(1). This is best if you want to use standardised SQL and don't mind that the field could contain an out of range value (basically anything that isn't 0 will be 'true').

ENUM('False', 'True') will let you use the strings in your SQL, and MySQL will store the field internally as an integer where 'False'=0 and 'True'=1 based on the order the Enum is specified.

In MySQL 5+ you can use a BIT(1) field to indicate a 1-bit numeric type. I don't believe this actually uses any less space in the storage but again allows you to constrain the possible values to 1 or 0.

All of the above will use approximately the same amount of storage, so it's best to pick the one you find easiest to work with.

link|improve this answer
1  
Your remark concerning the ENUM is not true: try CAST(yourenumcol AS UNSIGNED) and you'll notice that False will be 1, and True will be 2. Another problem with ENUM is that it is too easy to insert '' (empty string) . I would disrecommend using this. – Roland Bouman May 15 '10 at 22:40
1  
In my experience, using a BIT(1) field from PHP code was a bit troublesome. TINYINT(1) was a lot easier and produced more readable code. – M-Peror Jul 21 '11 at 7:27
@M-Peror - "using a BIT(1) field from PHP code was a bit troublesome"... no pun intended. :) But, yeah, I agree. I remember TINYINT(1) being easier, too... just can't remember why. Anyone else have thoughts on this? BIT(1) seems nicer on the surface because you can restrict to 0 or 1. I think BIT was sometimes interpreted as binary data (depending on the programming language and driver/library); whereas, TINYINT was treated more like a number. – BMiner Dec 6 '11 at 19:29
1  
@BMiner - haha, it was really unintended, didn't notice that :) But indeed, if I remember correctly the bit field was interpreted as something binary, whereas the tinyint was easier to treat as a number and because of that, easier to use in a (boolean) expression. – M-Peror Dec 21 '11 at 7:59
feedback

Until MySQL implements a bit datatype, if you're processing is truly pressed for space and/or time, such as with high volume transactions, create a TINYINT field called bit_flags, for all your boolean variables, and mask and shift the boolean bit you desire in your SQL query.

For instance, if your left-most bit represents your bool field, and the 7 rightmost bits represent nothing, then your bit_flags field will equal 128 (binary 10000000). Mask (hide) the seven rightmost bits (using the bitwise operator &), and shift the 8th bit seven spaces to the right, ending up with 00000001. Now the entire number (which, in this case, is 1) is your value.

SELECT (t.bit_flags & 128) >> 7 AS myBool FROM myTable t;
if bit_flags = 128 ==> 1 (true)
if bit_flags = 0 ==> 0 (false)

You can run statements like these as you test

SELECT (128 & 128) >> 7;

SELECT (0 & 128) >> 7;

etc...

Since you have 8 bits, you have potentially 8 boolean variables, from one byte. Some future programmer will invariably use the next seven bits, so you MUST mask. Don't just shift, or you will create hell for yourself and others in the future. Make sure you have MySQL do your masking and shifting - will be significantly faster than having the web-scripting language (PHP, ASP, etc...) do it. Also make sure you place a comment in the MySQL comment field for your bit_flags field.

You'll find these sites useful when implementing this method. http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html http://acc6.its.brooklyn.cuny.edu/~gurwitz/core5/nav2tool.html

link|improve this answer
1  
This seems just like a dreadful way to obfuscate intention to future programmers. Sure seems like a lot of trouble to save 7 bytes (assuming you are using all 8 bools in that single table!) – yep Jul 15 '11 at 18:24
feedback

This is an elegant solution that I quite appreciate because it uses zero data bytes:

some_flag CHAR(0) DEFAULT NULL

To set it to true, set some_flag = '' and to set it to false, set some_flag = NULL.

Then to test for true, check if some_flag IS NOT NULL, and to test for false, check if some_flag IS NULL.

(This method is described in "High Performance MySQL: Optimization, Backups, Replication, and More" by Jon Warren Lentz, Baron Schwartz and Arjen Lentz.)

[edit] I just realized there is a -2 vote answer already posted with the same solution. I'd delete this but I don't see an option to do that. I also don't agree with the down-votes because I find it a very nice solution.

link|improve this answer
feedback

Bit is only advantageous over the various byte options (tinyint, enum, char(1)) if you have a lot of boolean fields. One bit field still takes up a full byte. Two bit fields fit into that same byte. Three, four,five, six, seven, eight. After which they start filling up the next byte. Ultimately the savings are so small, there are thousands of other optimizations you should focus on. Unless you're dealing with an enormous amount of data, those few bytes aren't going to add up to much. If you're using bit with PHP you need to typecast the values going in and out.

link|improve this answer
feedback

This question has been answered but I figured I'd throw in my $0.02. I often use a CHAR(0), where '' == true and NULL == false.

link|improve this answer
2  
That's a really nasty solution, you shouldn't even consider using that. – GuidoH May 15 '10 at 22:34
3  
mm, this seems like asking for trouble if you as me. I mean, depending on the language it may be too easy to not spot the diff between NULL and '' (for example PHP). – Roland Bouman May 15 '10 at 22:36
feedback

Your Answer

 
or
required, but never shown