--記錄變數學習
--基本語法
--type 記錄型變數的名稱 is record (
--變數名 變數型別,
--變數名 變數型別。
--);
--例項:建立乙個過程,用於引數出入員工編號,運用記錄型變數列印員工姓名和薪資
create or replace procedure pro2(v_in_empno in emp.empno%type)
is --定義記錄型變數
type recordno is record (
v_name emp.ename%type,
v_sal emp.sal%type
);rn recordno;
begin
select ename,sal into rn.v_name,rn.v_sal from emp where empno = v_in_empno;
dbms_output.put_line('name='||rn.v_name || ' sal ='||rn.v_sal);
end;
--建立塊,用於呼叫過程
declare
begin
pro2(7839);
end;
--pl/sql表變數學習
--基本語法
--type pl/sql表變數型別 is table of 參考字段 index by binary_integer;
--例項:建立乙個幻術用於引數輸入員工編號,用pl/sql變數引數答應員工名。
create or replace function fun1(v_in_empno in emp.empno%type)
return emp.ename%type
is--定義pl/sql表型別
type chen_table is table of emp.ename%type index by binary_integer;
--定義pl/sql表變數
v_chen_table chen_table;
begin
select ename into v_chen_table(1) from emp where empno = v_in_empno;
dbms_output.put_line('name is ' ||v_chen_table(1));
return v_chen_table(1);
end;
--建立乙個塊,用於建立呼叫fun1
declare
v_name emp.ename%type;
begin
v_name := fun1(7369);
end;
oracle學習總結
一 定位 oracle分兩大塊,一塊是開發,一塊是管理。開發主要是寫寫儲存過程 觸發器什麼的,還有就是用oracle的develop工具做form。有點類似於程式設計師,需要有較強的邏輯思維和創造能力,個人覺得會比較辛苦,是青春飯j 管理則需要對oracle資料庫的原理有深刻的認識,有全域性操縱的能...
Oracle 學習總結
在家耽誤了一年,重新上班才發現,以前好多順手牽來的 都變的模糊了,所以隨時做好筆記很重要。1 1 檢視表的comment select from user tab comments where table name tj dtjczbtj 2 檢視當前使用者所有表的comment select fr...
Oracle學習總結
oracle的物理結構有控制檔案.資料檔案.日誌檔案 oracle的邏輯結構有 表空間.段,範圍,塊,表等.表空間可以有多個資料檔案.段可以有多個範圍.範圍可以有多個塊.資料檔案是最小的物理檔案塊.表能夠分割槽.不同的分割槽可以存放在不同的表空間中.也就是說表的幾個分割槽可以存放在不同的表空間裡面....