BIGINT(m): 64-bit integer (8 bytes, -/+9.22*10^18)
mysql>
mysql> CREATE TABLE a (
-> id INT NOT NULL AUTO_INCREMENT,
-> choice BIGINT NOT NULL,
-> ts TIMESTAMP,
-> PRIMARY KEY (id));
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table a;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category