`
wilent
  • 浏览: 39468 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
       与很多语言一样,oracle也有其集合结构,首先向大家介绍 :index-by表        index-by 类似c,c++,java中的数组.        一.  定义语法为:        TYPE TableType IS TABLE OF type INDEX BY BINARY_INTEER;        二. 示例                 1. 类型为字符串                           sql 代码   Declare       Type characterTab Is Table Of Varch ...
        在上个例子中,我们演示了通过java调用存储过程,获取数据集.可能有人觉得这个调用有点麻烦,本文又演示多个例子.         示范:   "select * from table(wilent_group_count1)";        其中wilent_group_count1为oracle函数,返回一个用户所需的虚拟表,再通过table()函数转换成表.           步骤:     一. 数据库表:    sql 代码   --用户表信息;   create table wilent_user(       i ...
        一般在java中,数据查询是通过Statement, PreparedStatement获取结果集,今天向大家介绍通过CallableStatement调用存储过程,从而获取结果集.        本文是所用的数据库为oracle.       一.  测试数据库表:              sql 代码   create table wilent_user(                   id number(5) primary key,                   name varchar2(100),          ...

PL/SQL 循环 FOR

Declare   counter Binary_Integer :=40; Begin   For counter In 30..40 Loop       Insert Into test Values('ddd',counter);    End Loop; End;

PL/SQL 循环 WHILE

Declare   counter Binary_Integer :=40; Begin   While counter <= 50 Loop       Insert Into test Values('bbb',counter);       counter := counter+1;    End Loop; End;

PL/SQL 循环 1

Declare   counter Binary_Integer :=1; Begin   Loop       Insert Into test Values('aa',counter);       counter := counter+1;       If counter >10 Then          Exit;       End If;    End Loop; End;

简单的PL/SQL

Declare          person_id_v Number(10) :=70;          full_name_v Varchar2(240) ; Begin      Select full_name Into full_name_v      From hr.per_all_people_f Where person_id = person_id_v;      If full_name_v = '吴' Then        dbms_output.PUT_LINE('吴);       Elsif full_name_v ='aa' Then          db ...
Global site tag (gtag.js) - Google Analytics