SQL中BIGINT字段类型的限制是什么?
SQL中BIGINT字段类型的限制是什么?
100000235882380 或 100000466411115 可以接受吗? (这是facebook的ID)
What is the limit of the field type BIGINT in SQL?
is 100000235882380 or 100000466411115 acceptable? (That is ID from facebook)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
检查您正在使用的 RDBMS 的手册。在所有系统中可能并不相同。
MySQL:
https://dev.mysql.com/doc/refman/5.7 /en/integer-types.html
PostgreSQL:
https://www.postgresql.org/docs/10/static/datatype -numeric.html
SQL Server (Transact-SQL):
https ://learn.microsoft.com/en-us/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql
DB2:
http://publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=/com.ibm.db29.doc.sqlref/db2z_biginteger.htm
Check the manual of the RDBMS you're using. It may not be the same in all systems.
MySQL:
https://dev.mysql.com/doc/refman/5.7/en/integer-types.html
PostgreSQL:
https://www.postgresql.org/docs/10/static/datatype-numeric.html
SQL Server (Transact-SQL):
https://learn.microsoft.com/en-us/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql
DB2:
http://publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=/com.ibm.db29.doc.sqlref/db2z_biginteger.htm
是的,根据int、bigint、smallint 和tinyint (Transact-SQL):
Yes, according to int, bigint, smallint, and tinyint (Transact-SQL):
这取决于 RDBMS。例如,MySQL 上的 BIGINT 最大值为
9223372036854775807
(有符号)或18446744073709551615
(无符号)。有关完整信息,请参阅文档的数字类型部分细节。
It depends on the RDBMS. For example, the maxiumum values of a BIGINT are
9223372036854775807
(for signed) or18446744073709551615
(for un-signed) on MySQL.See the Numeric Types section of the docs for the full details.
没什么好担心的。 BIGINT 可以存储比您拥有的值大得多的值。
最少可达 9,223,372,036,854,775,807。
Nothing to worry about. BIGINT can store much larger values than the ones you have.
At a minimum up to 9,223,372,036,854,775,807.