mysql size int

Solutions on MaxInterview for mysql size int by the best coders in the world

showing results for - "mysql size int"
Lilli
31 Sep 2017
1Type 	    Storage (Bytes)	Minimum Value Signed 	Minimum Value Unsigned	Maximum Value Signed	Maximum Value Unsigned
2TINYINT 	1				-128 					0 						127 					255
3SMALLINT 	2 				-32768 					0 						32767 					65535
4MEDIUMINT 	3 				-8388608 				0 						8388607 				16777215
5INT 		4 				-2147483648 			0 						2147483647 				4294967295
6BIGINT 		8 				-263 					0 						2^63-1 					2^64-1