Я работаю Oracle 10g. Я использую этот блок pl / sql
Declare
cursor Get_Data is select * from employee for update;
data Get_Data%rowtype;
Begin
for data in Get_Data loop
if(data.salary=5000) then
continue;
else
update employee set salary= salary+3000 where current of Get_Data;
end if;
end loop;
end;
Это дает мне эту ошибку: identifier 'CONTINUE' must be declared
подскажите, пожалуйста, как решить эту проблему.