PL/SQL个人学习笔记
Posted brucemengbm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PL/SQL个人学习笔记相关的知识,希望对你有一定的参考价值。
资料1
-- Created on 2014/8/20
declare
-- Local variables here
i integer;
begin
i := 12;
-- Test statements here
DBMS_OUTPUT.put_line(i);
end;
资料2
declare
cursor s is
select * from city_app.city_server;
s_ s%rowtype;
begin
open s;
fetch s into s_;
DBMS_OUTPUT.put_line(s_.id);
close s;
end;
以上是关于PL/SQL个人学习笔记的主要内容,如果未能解决你的问题,请参考以下文章