我想创建一个表
create table Oceny_projekty
(
OProj_Id int not null comment '',
ID_Projektu int comment '',
ID_Studenta int comment '',
OProj_Ocena decimal(1,1) comment '',
OProj_Data date comment '',
primary key (OProj_Id)
);
并使用PowerDesigner
生成的示例数据填充它insert into Oceny_projekty (OProj_Id, ID_Projektu, ID_Studenta, OProj_Ocena, OProj_Data)
values (2, 18, 10, '2.5', '1857-12-25');
我得到了这个:
插入Oceny_projekty(OProj_Id,ID_Projektu,ID_Studenta, OProj_Ocena,OProj_Data)值(2,18,10,'2.5','1857-12-25')错误 代码:1264。第1行
如何修改可接受十进制数的命令? (用整数表示没有问题) 使用MySQL Workbench 6.3,PowerDesigner 16.6
提前致谢!
答案 0 :(得分:1)
将OProj_Ocena
声明为decimal(1,1)
表示它有0个整数位(precision - scale = 1 - 1 = 0
)和1个小数位。它只能存储值0, 0.1, 0.2 ... 0.9
。
您需要的数据类型可能是decimal(2,1)
。
答案 1 :(得分:0)
以另一种方式表示 Marek Grzenkowicz 的答案,DECIMAL(M, D):
M = D +(整数位数)。 See 12.25.2 DECIMAL Data Type Characteristics
因此,确定您想要的整数位数、小数点左侧的位数以及您需要的小数位数 (D),然后将它们相加得到 M。IMO,他们应该使用短语“整数位”或“整数位”使这一点更加明显,即使他们所说的意味着 M 代表所有数字。起初我误解了这一点,直到我重读了他们的描述几次。