重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

sql integer什么意思

时间:2020-09-22 16:40:07 作者:重庆seo小潘 来源:
sql中的integer代表整数类型的,包含负整数、零和正整数;可用于指定数据表中某一字段的数据类型。 Integer类型,允许介于 -32,768 到 32,767 之间的数字; 2 字节。 例:在创建表时create table test (id integer);意味着,该id字段是整数类型的,在id这个

sql integer什么意思

sql中的integer代表整数类型的,包含负整数、零和正整数;可用于指定数据表中某一字段的数据类型。

Integer类型,允许介于 -32,768 到 32,767 之间的数字; 2 字节。

例:在创建表时create table test (id integer);意味着,该id字段是整数类型的,在id这个字段中,只能存取整数。

扩展资料:

mysql中,int(或Integer,关键字INT是INTEGER的同义词)类型的字段允许存取(-2 147 483 648,2 147 483 647)之间的数字。以上就是sql integer什么意思的详细内容,更多请关注小潘博客其它相关文章!