At 11:53 -0300 4/27/04, Ronan Lucio wrote:
Hi,

If I create a column with the type TINYINT(2) UNSIGNED.

Will the content can have the value minor than 510 (like a number 499),
or will the content can have two values minor than 255 (like 11)?

I don't know what "minor than" means, but TINYINT is a single-byte type. The range for TINYINT is -128 to 127, and the range for TINYTINT UNSIGNED in 0 to 255.

You can look up numeric column type ranges here:

http://dev.mysql.com/doc/mysql/en/Numberic_type_overview.html

--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to