数据库中自增id字段适合哪种数据类型和长度?
假设我的网站就像 Facebook 一样,每天都有很多条目。所以数据库中自增id字段的条目应该是很多很多很多。我应该使用 id 字段具有 50 个长度/值的 BIGINT,而不是不指定长度/值的 INT?
Let's say my website will be like Facebook which has a lot of entry everyday. So the entry for the field of auto increment id in database should be a lot lot lot. Instead of INT without specify the Length/Values, should I use BIGINT with 50 Length/Values for the id field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您使用的数据库,阅读手册并查找最大容量的整数数据类型,然后选择它。
如果您使用MySQL(因为您使用的是phpmyadmin),最大容量的整数数据类型是
BIGINT UNSIGNED
。使用它,您可以表示从 0 到 18446744073709551615 的整数。
请注意,
SERIAL
是BIGINT UNSIGNED NOT NULL AUTO_INCRMENT UNIQUE
的别名。这意味着,您应该选择
SERIAL
。Depending on the database you are using, read the manual and look for the largest capacity integer datatype, and go for it.
If you use MySQL (since you are using phpmyadmin), the largest capacity integer datatype is
BIGINT UNSIGNED
.With it, you can represent integers from 0 up to 18446744073709551615.
Note that
SERIAL
is an alias forBIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE
.That means, you should go for
SERIAL
.