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

來源:互聯網
上載者:User

標籤:oracle主鍵   primary key   pk   主鍵約束   資料庫   

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有錯誤的地方,請給予指正,非常感謝!

連絡方式:[email protected]

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


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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.