[20131212]12c新特性建表 屬性DEFAULT ON NULL.txt

lfree發表於2013-12-12
[20131212]12c新特性建表 屬性DEFAULT ON NULL.txt

在12c上建立表可以讓插入NULL等於某個特定的值.舉一個例子:


SCOTT@ztest> @ver
BANNER                                                                               CON_ID
-------------------------------------------------------------------------------- ----------
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production              0

SCOTT@ztest> create table t (id number, name varchar2(10) default on null 'test');
Table created.    


insert into t (id) values(1);
insert into t (id,name) values(2,null);
commit ;


SCOTT@ztest> select * from t;
        ID NAME
---------- --------------------
         1 test
         2 test

--可以發現如果插入name=NULL,實際上在表中記錄的是'test'.


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

相關文章