oracle插入 存储数据自动四舍五入怎么破
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
1个回答
展开全部
这种问题有可能是你列的格式引起的,比如ID列类型number(3,2),小数位最多2位,如果超过2位就会四舍五入;
示例如下:
create table a1(id number(3,2));
insert into a1 values(1.23);
insert into a1 values(1.526);
insert into a1 values(1.784);
insert into a1 values(1.23787887);
select * from a1;
结果:
ID
1.23
1.53
1.78
1.24
如果不想四舍五入,可以更改number(3,2)
如:
truncate table a1;
alter table a1 modify (id number(10,9));
insert into a1 values(1.23787887);
select * from a1;
ID
1.237878870
示例如下:
create table a1(id number(3,2));
insert into a1 values(1.23);
insert into a1 values(1.526);
insert into a1 values(1.784);
insert into a1 values(1.23787887);
select * from a1;
结果:
ID
1.23
1.53
1.78
1.24
如果不想四舍五入,可以更改number(3,2)
如:
truncate table a1;
alter table a1 modify (id number(10,9));
insert into a1 values(1.23787887);
select * from a1;
ID
1.237878870
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询