I wonder is there any positive effect in using UNSIGNED flag on defining some integer field in MySQL? Does it make queries faster or database smaller? Or should I only bother with it if I'm concerned about upper limit?
|
|
|
|
|
|
|
According to section 10.2 of the MySQL 5.1 Manual:
So using UNSIGNED is really only necessary when you are concerned about the upper bound. Also adding UNSIGNED does not affect the size of the column just how the number is represented. |
||
|
|
|
|
Use unsigned when the column is only meant to contain positive numbers. It will not affect any I/O performance on the column, as it will still take up exactly the same amount of space. |
||
|
|
|
|
It doesn't matter unless you are trying to get the most bang for your buck out of the values and don't need negative values. For instance, let's say you wanted to store 0-255. You could use a tinyint but only if you use it as unsigned. Lots of the databases I've seen, people don't bother optimizing like this and end up with some rather large tables because they just use INTs all the time. Still, if you're talking about int vs unsigned int, there is no performance affect or space effect at all. From a standards standpoint, I always use unsigned and only use signed when I know I will need negative values. G-Man |
||
|
|
