MySQL 5.0中int和integer有什么区别?
MySQL 5.0 中 int 和整型数据类型有什么区别? 有人可以帮忙吗? 我不明白确切的区别。
What is the difference between int and integer datatypes in MySQL 5.0? Can anyone help? I don't understand the exact difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
摘自 MYSQL 5.0 在线参考
关键字 INT 是整数的同义词。
Taken from MYSQL 5.0 online reference
The keyword INT is a synonym for INTEGER.
我想唯一的区别是拼写。
因此,通过使用 INT,您最终会在 SQL 脚本上使用更少的字节(但这并不重要)。
I guess the only difference is the spelling.
So by using INT, you'd end up using less bytes on your SQL script (not that it matters).
根据MySQL 文档:
,但如果您想编写与 ANSI SQL 使用
INTEGER
。 根据规范:这样,您将有更好的机会在其他 DBMS 上使用您的 SQL 脚本。 例如 PostgresSQL 有一个
INTEGER
类型,但没有INT
类型。According to the MySQL documentation :
but if you want to write SQL scripts compatible with ANSI SQL use
INTEGER
. According to the specification :In this way, you will have better chance to use your SQL scripts on other DBMS. For example PostgresSQL have an
INTEGER
type but noINT
type.int
和integer 之间的区别在于,int
是一种数据类型,而integer 是一组数据类型——例如int
、长
、短
和字节
。The difference between
int
and integer is thatint
is a data type, but integer is a group of data types – e.g.int
,long
,short
andbyte
.