- 浏览: 1379152 次
- 性别:
- 来自: 江西
最新评论
-
ron.luo:
牛逼,正解!
maven设定项目编码 -
lichaoqun:
java.sql.SQLException: Can't call commit when autocommit=true -
Xujian0000abcd:
Thanks...
Cannot proxy target class because CGLIB2 is not available. Add CGLIB to the clas -
renyuan2ni:
[i][b][u]引用[list]
[*][img][flas ...
Manual close is not allowed over a Spring managed SqlSession -
851228082:
宋建勇 写道851228082 写道<!-- 文件拷贝时 ...
maven设定项目编码
文章列表
第一个存储过程:
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.用户数 ...