6、整型与浮点型
1、数值型 整型 tinyint:占据空间1字节,储存范围-128——127,0——255 smallint:2个字节 mediuint:3个字节 Int:4个字节 bigint:8个字节 小数 浮点型:float(M,D) M叫“精度”--->代表总位数,D叫“标度”,代表小数位(小数右边的位数) 定点型:decimal(M,D) 长度不确定,是变长类型,把整数部分和小数部分,分开存储,比float精确。 1.1、学习tinyint的参数: (M) unsigned zerofill unsigned create table class( sname varchar(20) not null default '', age tinyint not null default 0 )engine myisam charset utf8; insert into class values ('王五',128); 显示:1264 - Out of range value for column 'age' at row 1 alter table class add score tinyint unsigned not null default 0; insert into class(sname,score) values ('张飞',-1); 显示:1264 - Out of