回覆列表
  • 1 # 使用者9639739024251

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

  • 中秋節和大豐收的關聯?
  • 為何那些只會拍馬屁工作能力不如我的人能更快得升職加薪?