Извините за простой вопрос, но я только начинаю изучать SQL/PL
Я хочу сделать этот код динамическим. Напечатайте число, чтобы "bolen", и мне будет возвращено, какое число разделит на зарплату
declare
cursor sal is select salary from employees where mod(salary,bolen)=0;
pul sal%rowtype;
bolen number;
begin
open sal;
bolen:=3;
loop
fetch sal into pul;
exit when sal%notfound;
dbms_output.put_line(' regem '|| sal%rowcount);
dbms_output.put_line(' salary ' ||pul.salary);
end loop;
close sal;
end;