`
文章列表
第一个存储过程: create or replace procedure proc_test_01(name varchar) is begin dbms_output.put_line('Hello ' || name || '!'); end proc_test_01 第二个存储过程: create or replace procedure proc_test_02(name varchar) is begin -- 调用存储过程[proc_test_01] proc_test_01(name); end proc_test_02 两个存储过程都能编译通过! ...
今天写了一个oracle定时,发现无法运行。 第一步写存储过程代码: create or replace procedure prc_update_tgyhxx as begin insert into 团购优惠信息(集团编号) select s.集团编号 from 团购优惠信息2 s where s.集团编号 not in(select 集团编号 from 团购优惠信息); update 团购优惠信息 set(上月用户数,本月新增数,月末用户数,调整折扣,用户手机号码)=(select ac.用户数1 上月用户数,ac.净增数 本月新增数,ac.净增数+ac.用户数 ...
Global site tag (gtag.js) - Google Analytics