oracle10g 簡單的oracle程式設計語句塊

2022-03-05 15:13:13 字數 1349 閱讀 6124

pl/sql 

pl/sql塊結構

分支語句

迴圈語句

異常處理

記錄的使用

plsql塊結構

declare 

...exception

...end;

/最後乙個表示執行有關操作

變數的宣告

定變數名稱 

定正確的資料型別 

定義變數 

控制變數作用範圍

變數由字母開頭 可以包含數字 下劃線 $ # 名字長度 1-30 大小寫不分 不能是系統關鍵字 

例子:declare x varchar2(10);

begin

x:='this is a!';

dbms_outprint.put_line('x的值'|| x);

end;--也要有分號結尾

/set serveroutput on size 100000;

--****************************************

declare 

a number;

b varchar2(10);

begin

a:=2;

if a=1 then

b='a';

else if a=2 then

b='b';

else

b='c';

end if;

dbms-output.put_line("b的值是:"||b);

end;

/--******************

declare 

a number;

b varchar2(10);

begin

a:=2;

case

when a=1 then b:='a';

when a=2 then b:='b';

when a=3 then b:='c';

else

b='c';

end case;

dbms_output.put_line(a||"  "||b);

--****************************************

declare 

x varchar2(20)='abc';

y string(10)='siyaomin';一定要設定大小

z interger=4;

begin

dbms_output.put(x||y);

dbms_output.new_line;//這兩句相當於一名 dbms_output.put_line(x||y);

end;

/

oracle10g 解除安裝

1 oracle 10g解除安裝軟體環境 1 windows xp oracle 10g2 oracle 安裝路徑為 d oracle 實現方法 1 開始 設定 控制面板 管理工具 服務停止所有 oracle 服務 2 開始 程式 oracle oradb 10g home1 oracle inst...

Oracle10g解除安裝

一 軟體解除安裝 1 windows xp oracle 10g 2 oracle安裝路徑為 d oracle 1 如果資料庫配置了自動儲存管理 asm 應該先刪除聚集同步服務css cluster synchronization services 刪除css服務的方法是在dos命令列中執行如下命令...

解除安裝oracle10g

1.停止所有與oracle相關的服務。2.使用oui oracle universal installer 解除安裝oracle軟體。開始 程式 oracle oradb110g home1 oracle installation product universal installer.3.刪除登錄...