码迷,mamicode.com
首页 > 其他好文 > 详细

数值类型

时间:2014-11-18 00:11:48      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   strong   div   on   log   

数值型-整数类型】1字节=8位

类型 字节 最小值(有符号/无符号) 最大值(有符号/无符号)
TINYINT 1 -128/0 127/255
SMALLINT 2 -23768/0 32767/65535
MEDIUMINT 3 -8388608/0 8388607/16777215
INT/INTEGE 4 -2147483648/0 2147483647/4294967295
BIGINT 8 -9223372036854775808/0 9223372036854775807/18446744073709551615

可使用unsigned控制正负

create table tb_int(
  a tinyint unsigned,
  b tinyint
);

insert into tb_int values (255,127);

可使用zerofill来进行前导零填充(最小宽度为2)

alter table tb_int add c tinyint(2) zerofill;
insert into tb_int values (6);
insert into tb_int values (126);

也存在布尔bool类型,但是一般只用tinyint(1),例如:男女、有无、开关。。。

 

数值型-小数类型单精度float(4字节)/双精度double(8字节)

存储空间=精度空间+幂空间(如:123.456=0.123456 * 10^3,即123456和3)

 

数值类型

标签:style   blog   color   使用   sp   strong   div   on   log   

原文地址:http://www.cnblogs.com/ayee/p/4104657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!