Search
 
SCRIPT & CODE EXAMPLE
 

SQL

mysql bigint max value

--			SIGNED										  UNSIGNED
--			Min               		Max                   Min Max
TINYINT     -128                    127                   0   255
SMALLINT    -32767                  32767                 0   65535
MEDIUMINT   -8388608                388608                0   16777215
INT         -2147483648             2147483647            0   4294967295
INTEGER     -2147483648             2147483647            0   4294967295
BIGINT      -9223372036854775808    9223372036854775808   0   18446744073709551615
Comment

mysql biginteger size

For MySQL database:
In BIGINT(8), the number 8 represents how the data will be displayed. It does not affect the storage. The number is used to display width.

BIGINT takes 8 bytes i.e. 64 bits. The signed range is -9223372036854775808 to 9223372036854775807 and unsigned range takes positive value. The range of unsigned is 0 to 18446744073709551615.
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql select row max date 
Sql :: sql online compiler 
Sql :: sqlite show columns 
Sql :: insert array into mysql column 
Sql :: delete rows from table sql 
Sql :: postgres default value 
Sql :: sql trim from string 
Sql :: mysql time 
Sql :: create function in sql 
Sql :: multiple count with where clause sql 
Sql :: postgres describe table 
Sql :: coalesce sql 
Sql :: ms sql server port 
Sql :: warning: mysqli::__construct(): (hy000/2002): 
Sql :: uninstall mysql ubuntu 18.04 stackoverflow 
Sql :: find log file postgresql linux 
Sql :: sql full outer join with where clause 
Sql :: how to connect to postgres 
Sql :: len sql 
Sql :: sql restore database from backup 
Sql :: how to duplicate mysql table 
Sql :: sql unique select 
Sql :: PostgreSQL: To_Number function 
Sql :: postgresql create table many-to-many 
Sql :: sql group by example 
Sql :: how to convert external table to managed table in hive 
Sql :: how to relationship query two different tables in MySQL 
Sql :: mysql max() 
Sql :: how to put is null in where in clause 
Sql :: primary key sql 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =