oracle資料庫操作集錦
資料庫表的作用是什麼?
在關係型資料庫中,所有資料的組織,管理和使用都是表為基礎的。oracle 資料庫中的資訊都要存放在表中,表的邏輯結構是以行列為組織結構的,它是一種邏輯結構,在資料庫中並不存在。
資料庫表定義主鍵的關鍵字是___primary key;定義外來鍵的關鍵字是__references_______。
定義乙個字段不可為空的關鍵字是___not null_______,檢查約束所使用的關鍵字是_check_____
建立員工管理表(編號,姓名,年齡,性別,住址)
create table staff_mange
( www.2cto.com
staff_id int,
staff_name varchar2(8),
age int,
*** char(2),
address varchar(30)
)建立薪水表(編號,薪水)
create table staff_salary
(staff_id int,
salary number(7,2))
為員工表新增主鍵,主屬性為員工編號
alter table staff_mange add constraint
pk_staff_id primary key(staff_id)
為薪水表和員工表建立依賴關係
alter table staff_salary add constraint
fk_staff_id foreign key (staff_id) references
staff_mange(staff_id) www.2cto.com
為薪水表新增檢查約束,新增薪水值不能超過10000
alter table staff_salary add constraint ck_salary check(salary<=10000)
刪除薪水表中的薪水字段
alter table staff_salary drop column salary
、將薪水表更名為員工薪水表
rename staff_salary to staff
為員工薪水表新增乙個列
alter table staff_salary add mm911 varchar2(10)
oracle資料庫操作
1 oracle安裝目錄,配置目錄 通過環境變數查詢 set grep oracle 網路配置在 oracle home network admin tnsnames.ora 2 oracle資料庫 select from v database 3 oracle表 4 oracle 工具 linux...
Oracle資料庫操作。
物件導向告一段落,重新撿起來sql server的知識,幸好資料庫語言都差不多,讓我重新學習oracle的時候並沒有想象中的費勁,只需要複習起來舊知識,再融合oracle特有的語法就足矣。廢話不多說,進入正題,此文章按照網上的資料 個人理解編寫,盡量做到通俗易懂,以便日後忘了能夠見文知意。注 sql...
oracle資料庫操作
1 建表空間 create tablespace ccpbs datafile home oracle bossdata ora data ccpbs index01.dbf size 100m reuse default storage initial 5000k next 5000k pctin...