主頁 > 知識庫 > 詳解Oracle數(shù)據(jù)庫各類控制語句的使用

詳解Oracle數(shù)據(jù)庫各類控制語句的使用

熱門標(biāo)簽:山東crm外呼系統(tǒng)軟件 哈爾濱電話機(jī)器人銷售招聘 愛客外呼系統(tǒng)怎么樣 開發(fā)外呼系統(tǒng) 慧營銷crm外呼系統(tǒng)丹丹 地圖標(biāo)注養(yǎng)老院 哪個400外呼系統(tǒng)好 百度地圖標(biāo)注途經(jīng)點(diǎn) 圖吧網(wǎng)站地圖標(biāo)注

Oracle數(shù)據(jù)庫各類控制語句的使用是本文我們主要要介紹的內(nèi)容,包括一些邏輯控制語句、Case when的使用、While的使用以及For的使用等等,接下來我們就開始一一介紹這部分內(nèi)容,希望能夠?qū)δ兴鶐椭?/p>

Oracle 中邏輯控制語句 

If elsif else end if  
set serverout on;  
declare per_dep_count number;  
begin  
select count(*) into per_dep_count from emp;  
if per_dep_count>0 then  
dbms_output.put_line('Big Than 0');  
elsif per_dep_count>5 then span style="font-size:24px;color:#ff0000;">strong>--elsif not elseif!!!!   
/strong>/span>        dbms_output.put_line('Big Than 5');  
else  
dbms_output.put_line('En?');  
end if;  
end; 

 Case when 的使用的兩種方式  :

第一種使用方式

declare per_dep_count number;  
begin  
select count(*) into per_dep_count from emp;  
case per_dep_count  
when 1 then  
dbms_output.put_line('1');  
when 2 then  
dbms_output.put_line('2');  
else  
dbms_output.put_line('else');  
end case;  
end;  

第二種使用方式

declare per_dep_count number;  
begin  
select count(*) into per_dep_count from emp;  
case   
when per_dep_count=1 then  
dbms_output.put_line('1');  
when per_dep_count=2 then  
dbms_output.put_line('2');  
else  
dbms_output.put_line('else');  
end case;  
end;  

While 的使用 

declare v_id number:=0;  
begin  
while v_id5 loop  
v_idv_id:=v_id+1;  
dbms_output.put_line(v_id);  
end loop;  
end;  

For的使用 

declare v_id number:=0;  
begin  
for v_id in 1..5 loop  
dbms_output.put_line(v_id);  
end loop;  
end; 

關(guān)于Oracle數(shù)據(jù)庫各類控制語句的使用就介紹到這里了,希望本次的介紹能夠?qū)δ兴斋@!

您可能感興趣的文章:
  • Flash中常用到的ActionScript控制語句用法
  • shell腳本中case條件控制語句的一個bug分析
  • linux shell流程控制語句實(shí)例講解(if、for、while、case語句實(shí)例)
  • 詳解JavaScript中循環(huán)控制語句的用法
  • C#編程自學(xué)之流程控制語句

標(biāo)簽:固原 武漢 開封 承德 青島 甘肅 周口 和田

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《詳解Oracle數(shù)據(jù)庫各類控制語句的使用》,本文關(guān)鍵詞  詳解,Oracle,數(shù)據(jù)庫,各類,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《詳解Oracle數(shù)據(jù)庫各類控制語句的使用》相關(guān)的同類信息!
  • 本頁收集關(guān)于詳解Oracle數(shù)據(jù)庫各類控制語句的使用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章