当前位置:Gxlcms > 数据库问题 > PL/SQL个人学习笔记

PL/SQL个人学习笔记

时间:2021-07-01 10:21:17 帮助过:16人阅读

-- 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个人学习笔记

标签:oca   open   creat   created   个人   etc   --   rowtype   ted   

人气教程排行