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

PL/SQL个人学习笔记

时间:2017-07-05 16:46:13      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:variables   class   data-   笔记   state   size   test   post   cursor   

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

标签:variables   class   data-   笔记   state   size   test   post   cursor   

原文地址:http://www.cnblogs.com/clnchanpin/p/7121953.html

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