課程
/數(shù)據(jù)庫
/Oracle
/Oracle數(shù)據(jù)庫開發(fā)必備利器之PL/SQL基礎(chǔ)
用enter輸入提示的代碼,能不能運(yùn)行
2018-07-09
源自:Oracle數(shù)據(jù)庫開發(fā)必備利器之PL/SQL基礎(chǔ) 2-1
正在回答
set serveroutput on
declare
? ? cursor c is select name from tb_1 where id=5;
? ? pname tb_1.name%type;
? ? not_found_emp exception;
begin
open c;
fetch c into pname;
if c%notfound then
? ? raise not_found_emp;
end if;
close c;
exception
when not_found_emp then DBMS_OUTPUT.PUT_LINE('沒有找到5號員工');
when others then dbms_output.put_line('其他例外');
end;
/
舉報(bào)
Oracle數(shù)據(jù)庫高級開發(fā)必備的基礎(chǔ),通過實(shí)例帶你熟練掌握
1 回答跟著老師的代碼寫,為什么總是報(bào)錯(cuò)不能輸出?
3 回答我的if語句不起作用,望大家指導(dǎo)下
1 回答光標(biāo)的退出條件語句的書寫位置
3 回答為什么SALTOTAL要大寫呢?
2 回答為什么不能在begin..end語句中定義變量?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2018-07-15
set serveroutput on
declare
? ? cursor c is select name from tb_1 where id=5;
? ? pname tb_1.name%type;
? ? not_found_emp exception;
begin
open c;
fetch c into pname;
if c%notfound then
? ? raise not_found_emp;
end if;
close c;
exception
when not_found_emp then DBMS_OUTPUT.PUT_LINE('沒有找到5號員工');
when others then dbms_output.put_line('其他例外');
close c;
end;
/