Ukuran int SQL

According to https://www.w3schools.com/sql/sql_datatypes.asp, signed INT(size) ranges from -2147483648 to 2147483647. Unsigned range is from 0 to 4294967295. The size parameter specifies the maximum display width (which is 255)
CompSciGeek