-
declare begin execption end查看全部
-
1、PL/SQL是對sql語言的過程化擴展 2、PL/SQL是面向過程的語言查看全部
-
在end;下行出現/表示退出上面的編輯環境并且執行編輯。 dbms_output.put_line('輸出的內容'); set serveroutput on --打開輸出開關 單獨輸入/表示執行上一次PL/SQL程序 desc dbms_output --查看程序包的結構查看全部
-
Oracle sql Deveploper http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html查看全部
-
學習入門教程我連電腦語言都不懂。查看全部
-
看不懂查看全部
-
cursor c1 is select col from a open c1; fetch c1 into pename; close c1; 光標屬性 %found %notfound --example set server output on declare cursor cemp is select name.sal from emp; 為光標定義對應的變量 pename emp.ename%type; psal emp.sal%type; begin open camp; loop fetch cemp into pename,pal; --when exit? fetch 不一定能取到記錄 exit when camp%notfound dbms_output.put_line(pename||'的薪水是‘||psal'); end loop; close camp end查看全部
-
PL/SQL光標(游標)使用案例 開頭是: declare cursor cemp is select ename,sal from emp; ...查看全部
-
PL/SQL中的記錄型變量查看全部
-
PL/SQL中的引用型變量查看全部
-
軟件開發流程,瀑布模型。小程序,大系統查看全部
-
變量定義 循環 if查看全部
-
fetch c1 into penname查看全部
-
kklllllll查看全部
-
lll查看全部
舉報
0/150
提交
取消