关键词搜索

源码搜索 ×
×

mysql的AUTO_INCREMENT如果达到最大值会怎样呢?

发布2017-09-22浏览14995次

详情内容

        在之前的一个项目中, mysql的自增值类型是int unsigned形式的, 我就在想, 要是超过这个值会怎样呢?

        有问题, 必然有解决方法, 可以修改int unsigned类型为bigint类型, 这是64位的整数, 如果超过64位的整数, 会怎样呢?  自己可以写几个mysql语句试一下, 满了会出错.  那怎么办呢? 实际上, 你的自增id永远无法达到这个值。 

        假设每秒消耗1万个id,  需要多少年, 你自己算算。 吓死人。

         

         来写几个sql语句看看:

  1. mysql> create table t2 (id tinyint unsigned auto_increment primary key, score int);
  2. ERROR 1050 (42S01): Table 't2' already exists
  3. mysql> drop table t2;
  4. Query OK, 0 rows affected (0.00 sec)
  5. mysql> create table t2 (id tinyint unsigned auto_increment primary key, score int);
  6. Query OK, 0 rows affected (0.00 sec)
  7. mysql> insert into t2 values (250,1);
  8. Query OK, 1 row affected (0.00 sec)
  9. mysql> select * from t2;
  10. +-----+-------+
  11. | id | score |
  12. +-----+-------+
  13. | 250 | 1 |
  14. +-----+-------+
  15. 1 row in set (0.00 sec)
  16. mysql> insert into t2 values (null,1);
  17. Query OK, 1 row affected (0.01 sec)
  18. mysql> select * from t2;
  19. +-----+-------+
  20. | id | score |
  21. +-----+-------+
  22. | 250 | 1 |
  23. | 251 | 1 |
  24. +-----+-------+
  25. 2 rows in set (0.00 sec)
  26. mysql> insert into t2 values (null,1);
  27. Query OK, 1 row affected (0.00 sec)
  28. mysql> insert into t2 values (null,1);
  29. Query OK, 1 row affected (0.00 sec)
  30. mysql> insert into t2 values (null,1);
  31. Query OK, 1 row affected (0.00 sec)
  32. mysql> insert into t2 values (null,1);
  33. Query OK, 1 row affected (0.00 sec)
  34. mysql> insert into t2 values (null,1);
  35. ERROR 1062 (23000): Duplicate entry '255' for key 'PRIMARY'
  36. mysql>



相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载