数据库中自增id字段适合哪种数据类型和长度?

发布于 2024-10-30 08:07:22 字数 109 浏览 0 评论 0原文

假设我的网站就像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝不放开 2024-11-06 08:07:22

根据您使用的数据库,阅读手册并查找最大容量的整数数据类型,然后选择它。

如果您使用MySQL(因为您使用的是phpmyadmin),最大容量的整数数据类型是BIGINT UNSIGNED

使用它,您可以表示从 0 到 18446744073709551615 的整数。

请注意,SERIALBIGINT 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 for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.

That means, you should go for SERIAL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文