天天看點

修改oracle字段小數點精度,修改小數點位數

1.建立測試表

SQL> create table t_int(id number(20,3),name varchar2(10));

Table created.

SQL> insert into t_int values(3.1456,'a');

1 row created.

SQL> select *from t_int;

ID NAME

---------- ------------------------------

3.146 a

SQL> commit;

Commit complete.

2.修改精度

SQL> alter table t_int modify id number(20,4);

alter table t_int modify id number(20,4)

*

ERROR at line 1:

ORA-01440: column to be modified must be empty to decrease precision or scale

表中存在資料,如果小數部分加大,整數部分減小了,是以不能更改成功

3.

SQL> alter table t_int modify (id number(21,4));

Table altered.

SQL> desc t_int

Name                                      Null?    Type

----------------------------------------- -------- -----------------

ID                                                 NUMBER(21,4)

NAME                                               VARCHAR2(10)

4.如果已存在大量資料修改速度也是很快

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26937943/viewspace-1448560/,如需轉載,請注明出處,否則将追究法律責任。