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 :: helptext in sql 
Sql :: sql column values comma separated 
Sql :: select sql in descending order 
Sql :: postgresql add alter permissions to role 
Sql :: creating a view sql 
Sql :: start mysql server using docker 
Sql :: oracle stop 
Sql :: show tables in schema oracle 
Sql :: update set with inner join oracle 
Sql :: FIND OUT THE NAME HIGHEST SALARY SQL 
Sql :: sql insert query 
Sql :: finding duplicate rows mysql 
Sql :: login to database mysql terminal 
Sql :: group_concat order by 
Sql :: mysql change primary key 
Sql :: create table mysql 
Sql :: sql empty table 
Sql :: sql if null then 0 
Sql :: sql delete multiple conditions 
Sql :: show processlist mysql full query 
Sql :: alter table name 
Sql :: like sql 
Sql :: how to alter length character varying postgres 
Sql :: postgres create type 
Sql :: sql remove not null constraint 
Sql :: clone table structure mysql 
Sql :: media sql 
Sql :: sql delete caracter list 
Sql :: sql add column after another column 
Sql :: how to get id of last inserted row in mysql 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =