告诉你两点:
1、当出现警告或者错误的时候,使用show
error
命令,可以查看错误的具体信息,在信息中可以定位错误的具体位置。
2、你的问题是:【endif;】不能写在一起,【end
if;】是正确的。
类似的还有【end
loop】
等。
---
以上,希望对你有所帮助。
把fetch的那一句话放到loop的后面。要不你fetch的值永远都是第一笔记录。
fetch只用一次就好了.
loop后面不能打“;”号
update拼写错啦
create or replace procedure p_refreshtreply
as
create c_tid is select tid from ttopic;
v_tid ttopic.tid%type;
v_c number;
begin
open c_tid;
while(c_tid%found) loop
fatch c_tid.tid into v_tid;
select count(*) into v_c from treply where tid=v_tid;
update ttopic set treply=v_c where tid=v_tid;
end loop;
close c_tid;------4)关闭游标
end;
fatch改成fetch
SQL>SHOW ERRORS PROCEDURE p_refershtreply