创建double 字段 要有默认小数点位数
mysql> create table MyClass(
id int(4) not null primary key auto_increment,
name char(20) not null,
degree double(16,2));
mysql> create table MyClass(
id int(4) not null primary key auto_increment,
name char(20) not null,
degree double(16,2));