oracle添加not null約束,oraclenotnull約束

來源:互聯網
上載者:User

oracle添加not null約束,oraclenotnull約束
在建立表時,為列添加not null約束,形式如下:
column_name data_type
[constraint constraint_name] not null
其中,constraint constraint_name 表示為約束指定名稱。
也可以為已建立的表中添加not null約束,這時就需要使用alter table... modify語句,形式如下:
alter table table_name modify column_name [constraint constraint_name] not null;


刪除not null約束
如果需要刪除表中的裂傷的not null約束,依然是使用alter table...modify語句,形式如下:
alter table table_name modify column_name null;


具體的操作如下:
SQL> create table person(
  2  pid number(4) not null,
  3  pname varchar2(20),
  4  psex char(2)
  5  );
表已建立。
SQL> desc person;
 名稱                                      是否為空白? 類型
 ----------------------------------------- -------- -------------------
 PID                                       NOT NULL NUMBER(4)
 PNAME                                              VARCHAR2(20)
 PSEX                                               CHAR(2)
SQL> alter table person modify pname not null;
表已更改。
SQL> desc person;
 名稱                                      是否為空白? 類型
 ----------------------------------------- -------- ------------------
 PID                                       NOT NULL NUMBER(4)
 PNAME                                     NOT NULL VARCHAR2(20)
 PSEX                                               CHAR(2)
SQL> insert into person values(1,'aaa','女');
已建立 1 行。
SQL> insert into person values(1,'aaa',null);
已建立 1 行。
SQL> insert into person values(1,null,null);
insert into person values(1,null,null)                           *
第 1 行出現錯誤:
ORA-01400: 無法將 NULL 插入 ("SYSTEM"."PERSON"."PNAME")
SQL> alter table person modify pname null;
表已更改。
SQL> desc person;
 名稱                                      是否為空白? 類型
 ----------------------------------------- -------- ------------------
 PID                                       NOT NULL NUMBER(4)
 PNAME                                              VARCHAR2(20)
 PSEX                                               CHAR(2)
SQL> insert into person values(1,null,null);
已建立 1 行。
SQL>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.