Home >Backend Development >PHP Tutorial >mysql中一个表,假设主键为id并且自增,那么id变得特别大会造成什么后果?

mysql中一个表,假设主键为id并且自增,那么id变得特别大会造成什么后果?

WBOY
WBOYOriginal
2016-06-06 20:12:261317browse

<code>403102    微信图文统计    0    unileverexpiry/websitearticle/index    403    3    rw    y            
403103    素材分组    0    material/admin/group    403    1    rw    n            
</code>

上面是数据库中最大的数据。

回复内容:

<code>403102    微信图文统计    0    unileverexpiry/websitearticle/index    403    3    rw    y            
403103    素材分组    0    material/admin/group    403    1    rw    n            
</code>

上面是数据库中最大的数据。

如果 你是用 int 他的范围是
从 -2^31 (-2,147,483,648) 到 2^31 – 1 (2,147,483,647) 的整型数据(所有数字)。存储大小为 4 个字节,应该也够用了

这个确实有可能会出在溢出的情况,不过还是要看PHP是32位的还是64位的,不过对于MySQL来说,它能够存储的范围,基本上不太用考虑溢出问题把。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn