I am trying to find out the maximum value for an integer (signed or unsigned) from a MySQL database. Is there a way to pull back this information from the database itself?

Are there any built-in constants or functions I can use (either standard SQL or MySQL specific).

At http://dev.mysql.com/doc/refman/5.0/en/numeric-types.html it lists the values - but is there a way for the database to tell me.

The following gives me the MAX_BIGINT - what I'd like is the MAX_INT.

SELECT CAST( 99999999999999999999999 AS SIGNED ) as max_int;
# max_int | 9223372036854775807

Thanks in advance,

link|improve this question

Rewrite it from a table (dev.mysql.com/doc/refman/5.0/en/numeric-types.html). This not change any way, you can define it const. – Svisstack Apr 20 '10 at 22:17
1  
Be aware that you will have different values for SIGNED v. UNSIGNED ints. – BryanH Apr 20 '10 at 22:19
Hi CoffeeMonster. Did you check out my answer? If you consider it the right one, please check it as such. Much appreciated, Roland. – Roland Bouman Apr 23 '10 at 8:43
CoffeeMonster, I have updated my answer. Please take a look and see what you think. TIA, Roland – Roland Bouman Apr 29 '10 at 21:11
feedback

3 Answers

up vote 6 down vote accepted

In Mysql there is a cheap trick to do this:

mysql> select ~0;
+----------------------+
| ~0                   |
+----------------------+
| 18446744073709551615 |
+----------------------+

the tilde is the bitwise negation. The resulting value is a bigint. See: http://dev.mysql.com/doc/refman/5.1/en/bit-functions.html#operator_bitwise-invert

For the other integer flavours, you can use the right bitshift operator >> like so:

SELECT ~0 as max_bigint_unsigned
,      ~0 >> 32 as max_int_unsigned
,      ~0 >> 40 as max_mediumint_unsigned
,      ~0 >> 48 as max_smallint_unsigned
,      ~0 >> 56 as max_tinyint_unsigned
,      ~0 >> 1  as max_bigint_signed
,      ~0 >> 33 as max_int_signed
,      ~0 >> 41 as max_mediumint_signed
,      ~0 >> 49 as max_smallint_signed
,      ~0 >> 57 as max_tinyint_signed
\G

*************************** 1. row ***************************
   max_bigint_unsigned: 18446744073709551615
      max_int_unsigned: 4294967295
max_mediumint_unsigned: 16777215
 max_smallint_unsigned: 65535
  max_tinyint_unsigned: 255
     max_bigint_signed: 9223372036854775807
        max_int_signed: 2147483647
  max_mediumint_signed: 8388607
   max_smallint_signed: 32767
    max_tinyint_signed: 127
1 row in set (0.00 sec)
link|improve this answer
This is a much nicer way to workout the max(Big_Int). What I'm after is max(Signed) and max(Unsigned). – CoffeeMonster Apr 26 '10 at 21:23
Coffemonster, see my updated answer. – Roland Bouman Apr 28 '10 at 0:37
feedback

There does not seem to be any built-in constants to supply these values. Since most likely they will not change, you should be safe either hard-coding them or setting their values to a lookup table or variable.

link|improve this answer
feedback

Rewrite it from a table (http://dev.mysql.com/doc/refman/5.0/en/numeric-types.html). This not change any way, you can define it const.

SELECT 4294967295 as max_int;
# max_int | 4294967295 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.