还有这个为什么也出错了?
create table BookStore(
BNumber number(10,0),
BDiscount number(1,2) not null,
check (BDiscount>=0.7)
);
当我输入: insert into Bookstore(bdiscount) values(0.9);
提示错误
insert into Bookstore(bdiscount) values(0.9)
                                        *
RROR 位于第 1 行:
RA-01438: 值大于此列指定的允许精确度