oracle 中 Function 傳參數 查詢傳參數表總數,返回 總數

來源:互聯網
上載者:User
create or replace function GET_COUNT_ZS(deptcode  in varchar2, tablename in varchar2,bs in varchar2)return  varchar2is num varchar2(1000);c number;beginif(bs=0) then num:='select count(*) from '||tablename||' where  deptcode like '''||deptcode||'%''';end if;if(bs=1) thennum:='select count(*) from '||tablename||' where  deptcode like '''||deptcode||'%'''||' and  SFDTGL=1' ;end if;execute immediate num into   c;return c;end;

  

第二個 :

create or replace function GET_COU_SYQK(deptcode  in varchar2, SYZT in varchar2)return  varchar2isnum varchar2(1000);c number;beginnum:='select count(*) from t_fwcq where  deptcode like '''||deptcode||'%'' and sszthz = '''||SYZT||'''';execute immediate num into   c;return c;end;

調用的sql 語句 :

 var stb = new StringBuilder();            stb.Append("select ");            stb.Append("GET_COUNT_ZS('" + deptcode + "','t_fwzc',0) as countzc ");            stb.Append(",GET_COUNT_ZS('" + deptcode + "','t_fwcq',0) as countfw ");            stb.Append(",GET_COUNT_ZS('" + deptcode + "','zc_dt',0) as countdt ");            stb.Append(",GET_COUNT_ZS('" + deptcode + "','t_fwzc',1) as countygl ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','自用') as countzy ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','閑置') as countxz ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','出租') as countcz ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','佔用') as countzhany ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','出售') as countcs ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','盤虧') as countpk ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','封存') as countfc ");            stb.Append(",GET_COU_SYQK('" + deptcode + "','其他') as countyqt ");            stb.Append("from dual ");
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.