Oracle之主鍵(Primary Key)用法詳解,oracleprimary

來源:互聯網
上載者:User

Oracle之主鍵(Primary Key)用法詳解,oracleprimary

Oracle/PLSQL: 主鍵(Primary Key)用法

1 目標

通過樣本講解如何建立、刪除、禁用和開啟主鍵。


2 前言之-什麼是主鍵

在Oracle中,主鍵指能唯一標識一條記錄的單個資料表列或聯合的資料表列(聯合主鍵|複合主鍵)。主鍵用到的資料表列資料不能包含空值。而且,一張表只能包含一個主鍵。

說明:在Oracle資料庫中,聯合主鍵的列不能超過32個。主鍵可以在建立表時定義或者通過ALTER TABLE文法定義。


3 建立主鍵之 - 在建立表時定義主鍵

單列主鍵樣本:

CREATE TABLE TB_PK_EXAMPLE(  ID number,  NAME varchar2(50),  DESCRIPTION varchar2(300),  CONSTRAINT TB_PK_EXAMPLE_PK PRIMARY KEY(ID)--定義主鍵);

聯合主鍵樣本:

CREATE TABLE TB_SUPPLIER_EX(  supplier_id number,  supplier_name varchar2(50),  supplier_description varchar2(300),  contact_name varchar2(50),  constraint TB_SUPPLIER_EX_PK primary key(supplier_id, supplier_name)--聯合主鍵);

4 建立主鍵之 - 使用alter table文法

文法

ALTER TABLE table_name ADD CONSTRAINT constraint_name PRIMARY KEY (col1, col2,...coln);

樣本準備

先建立兩張表(tb_employees和tb_departments),指令碼如下:

create table tb_employees(employee_id number,employee_name varchar2(50),employee_age number,employee_birth date,department_id number);create table tb_departments(department_id number,department_name varchar2(100),location varchar2(300));

同過alter table文法建立主鍵:

--單列主鍵alter table tb_employees add constraint tb_employees_pk primary key (employee_id);--聯合主鍵alter table tb_departments add constraint tb_departments_pk primary key (department_id,department_name);


5 禁用主鍵

文法:

ALTER TABLE table_name DISABLE CONSTRAINT constraint_name;
樣本:

alter table tb_employees disable constraint tb_employees_pk;


6 啟用主鍵

文法:

ALTER TABLE table_name ENABLE CONSTRAINT constraint_name;

樣本:

alter table tb_employees enable constraint tb_employees_pk;

7 刪除主鍵

文法:

ALTER TABLE table_name DROP CONSTRAINT constraint_name;

樣本:

alter table tb_employees drop constraint tb_employees_pk;alter table tb_departments drop constraint tb_departments_pk;alter table TB_PK_EXAMPLE drop constraint TB_PK_EXAMPLE_PK;alter table TB_SUPPLIER_EX drop constraint TB_SUPPLIER_EX_PK;



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

如果您們在嘗試的過程中遇到什麼問題或者My Code有錯誤的地方,請給予指正,非常感謝!

連絡方式:david.louis.tian@outlook.com

著作權@:轉載請標明出處!
--------------------------------------------------------------------------------------------------------------------



為何oracle在定義主鍵的時,primary key 後面為何還要跟一個not null,primary key不就是要非空的

確實primary key等於unique key加上not null,但是說到底primary key也只是index裡邊的一種特殊的鍵,但並沒有規定說有primary的存在就不能有其他的了。是一種先入為主的想法 ,加上not null也不算錯
 
oracle怎取消一個欄位的primary key屬性

alter table drop key
 

相關文章

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.