PL/SQL个人学习笔记(二)
时间:2014-09-02 10:35:24
收藏:0
阅读:328
IF条件
declare
cursor s isselect version from city_server t;
s_ city_server.version%type;
begin
open s;
fetch s into s_;
if s_>2
then
DBMS_OUTPUT.put_line(s_);
end if;
close s;
end;
LOOP循环
declare
cursor s is
select version from city_server t;
s_ city_server.version%type;
begin
open s;
loop
fetch s into s_;
exit when s%notfound;
DBMS_OUTPUT.put_line(s_);
end loop;
close s;
end;
原文:http://blog.csdn.net/ztt_1119/article/details/39001207
评论(0)