Skip to content

UNSIGNED

CREATE TABLE test_table (
id INT UNSIGNED);
Query OK, 0 rows affected (0.11 sec)

The id column is created as an INT UNSIGNED. This means that the id column can hold any integer between 0 and 4294967295.