zoukankan      html  css  js  c++  java
  • oracle pl/sql 中的动态函数

    1.execute immediate

    create or replace function getrealtypeforreport(p_stanid number,p_id number,p_infoname varchar2) return varchar2
    is
     v_string                 varchar2(200);
     v_returninfo             varchar2(200);
     v_acttabname             stanactive.acttabname%type;
     v_actpkcol               stanactive.actpkcol%type;
    begin
         select acttabname,actpkcol into v_acttabname,v_actpkcol from stanactive where stanid=p_stanid;
       v_string:='select realtype from vw_'||v_acttabname||' where '||v_actpkcol||' = '||p_id;
       execute immediate v_string into v_returninfo;
     return v_returninfo;
    end;
    /
    show err;

    2. Open ttdscur for v_sql

    create or replace function getfieldstring(p_expectfield varchar2,p_expecttable varchar2,p_expectcause varchar2) return varchar2
    is
    /*
    函数功能:获取单个属性将其拼成一行
    参数说明:p_expectfield   查询字段
              p_expecttable   查询主表
              p_expectcause   查询条件
    */
     v_sql    varchar2(4000):='';
     type ttds_cursor is ref cursor;
     ttdscur     ttds_cursor;
     ttdigital    varchar2(4000);
     v_cnt                   number;
     v_return  varchar2(4000):='';
    begin
     v_sql:='select '||p_expectfield||' from '||p_expecttable||' where '||p_expectcause;
     v_cnt:=0;
     Open ttdscur for v_sql;
     loop
      fetch ttdscur into ttdigital;
      exit when ttdscur%notfound;
      if v_cnt=0 then
       v_return:=ttdigital;
      else
       v_return:=v_return||','||ttdigital;
      end if;
      v_cnt:=v_cnt+1;
     end loop;
     Close ttdscur;
     return v_return;
    end getfieldstring;
    /
    show err;

    举例:

    select getfieldstring('certno','rightcert','activeid=@id and certtypeid in (3)') from dual;

  • 相关阅读:
    system函数调用
    ubuntu设置开机默认进入界面及命令行下开启图像界面
    博客园添加目录
    [转]JavaScript自动生成博文目录导航
    博客选择: csdn博客和博客园(cnblog)
    [转]Git服务器的搭建全部功略
    Ubuntu忘记密码
    [转]android logo:内核、android开机动画
    [转]关于前置声明与C++中头文件相互包含的几点问题
    [转]while(cin>>str)输入结束符,并正确执行后续程序
  • 原文地址:https://www.cnblogs.com/BradMiller/p/1743965.html
Copyright © 2011-2022 走看看