Which MYSQL Datatype to use for storing boolean values from/to PHP ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:29:29Z http://stackoverflow.com/feeds/question/289727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php 4 Which MYSQL Datatype to use for storing boolean values from/to PHP ? Beat 2008-11-14T10:36:18Z 2009-08-14T13:23:38Z <p>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.</p> <p>Over the time I have used and seen several approaches: </p> <ul> <li>tinyint, varchar fields containing the values 0/1, </li> <li>varchar fields containing the strings '0'/'1' or 'true'/'false'</li> <li>and finally enum Fields containing the two options 'true'/'false'. </li> </ul> <p>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.</p> <p>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?</p> <p>Tanks alot, Beat</p> http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php/289738#289738 3 Answer by Fred for Which MYSQL Datatype to use for storing boolean values from/to PHP ? Fred 2008-11-14T10:42:51Z 2008-11-14T10:42:51Z <p>I use TINYINT(1) in order to store boolean values in Mysql.</p> <p>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)</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/other-vendor-data-types.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/other-vendor-data-types.html</a></p> http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php/289759#289759 18 Answer by tharkun for Which MYSQL Datatype to use for storing boolean values from/to PHP ? tharkun 2008-11-14T10:50:51Z 2008-11-14T10:50:51Z <p>according to the mysql manual you can use bool and boolean which are at the moment aliases of tinyint(1):</p> <blockquote> <p>Bool, Boolean: These types are synonyms for TINYINT(1). A value of zero is considered false. Non-zero values are considered true.</p> </blockquote> <p>mysql also states that: </p> <blockquote> <p>We intend to implement full boolean type handling, in accordance with standard SQL, in a future MySQL release.</p> </blockquote> <p>btw: this is just a matter of <a href="http://www.google.ch/search?q=mysql+boolean+datatype" rel="nofollow">http://www.google.ch/search?q=mysql+boolean+datatype</a></p> http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php/289767#289767 3 Answer by Toytown Mafia for Which MYSQL Datatype to use for storing boolean values from/to PHP ? Toytown Mafia 2008-11-14T10:55:02Z 2008-11-14T10:55:02Z <p><code>BOOL</code> and <code>BOOLEAN</code> are synonyms of <code>TINYINT(1)</code>. Zero is <code>false</code>, anything else is <code>true</code>. More information <a href="http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php/290328#290328 1 Answer by Ciaran McNulty for Which MYSQL Datatype to use for storing boolean values from/to PHP ? Ciaran McNulty 2008-11-14T14:59:29Z 2008-11-14T14:59:29Z <p>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').</p> <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/289727/which-mysql-datatype-to-use-for-storing-boolean-values-from-to-php/808172#808172 1 Answer by Josh for Which MYSQL Datatype to use for storing boolean values from/to PHP ? Josh 2009-04-30T17:39:49Z 2009-04-30T17:39:49Z <p>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.</p>