在關係型資料庫中,表被看作乙個關係,表中的每個列是關係中的屬性,是乙個不可再分割的基本單位,表中的行對應乙個元組。
①、建立表
create table 《表名》(《列名》《資料型別》[約束]);
資料型別:
#通過子查詢的方式建立表:
scott@myh>create table test as select * from dept;
②、表的修改
#增加列 關鍵字add
scott@myh>alter table stu add (tel number(11));
table altered.
#刪除列 關鍵字drop
scott@myh>alter table stu drop column age;
table altered.
#修改列的定義 關鍵字modify
scott@myh>alter table stu modify (id number(4));
table altered.
#將乙個列設定為不可用 關鍵字set unused。設定為unused的列雖然邏輯上看不到,但是物理上是存在的。
#然後再刪除不可用列。
scott@myh>alter table stu set unused column tel;
table altered.
#修改列名 關鍵字 rename column <> to <>
scott@myh>alter table stu rename column name to stu_name;
table altered.
#將表設定為唯讀狀態
scott@myh>alter table stu read only;
#設定為可寫狀態
scott@myh>alter table stu read write;
③、表的刪除,將表結構和表資料全部都刪除。
scott@myh>drop table stu;
table dropped.
Oracle資料庫物件
本文研究有關oracle資料庫物件的用法。oracle中包含五種資料庫物件,分別為別名 序列 檢視 索引和簇,其中別名和序列為oracle中特有的資料庫物件。別名 通過對oracle中資料表設定別名之後,可以使用別名對資料表進行與原表名同樣的各種操作。其語句關鍵字為synonym 下面看其具體用法。...
oracle資料庫物件
alter table 檢視 站 show recyclebin 清空 站 purge recyclebin 徹底刪除表 drop table emp purge 2.檢視 優點 1.檢視是一張虛表 2.檢視建立在已有表的基礎上,檢視賴以建立的這些表稱為基表。3.向檢視提供資料內容的語句為 sele...
Oracle資料庫物件
本文研究有關oracle資料庫物件的用法。oracle中包含五種資料庫物件,分別為別名 序列 檢視 索引和簇,其中別名和序列為oracle中特有的資料庫物件。別名 通過對oracle中資料表設定別名之後,可以使用別名對資料表進行與原表名同樣的各種操作。其語句關鍵字為synonym,下面看其具體用法。...