码迷,mamicode.com
首页 > 数据库 > 详细

PL/SQL个人学习笔记

时间:2017-07-05 16:44:08      阅读:206      评论:0      收藏:0      [点我收藏+]

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

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

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

原文地址:http://www.cnblogs.com/brucemengbm/p/7121954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!