這種問題有可能是你列的格式引起的,比如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));
1.237878870
這種問題有可能是你列的格式引起的,比如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