SQL%ROWCOUNT
বরাদ্দ না করেও ব্যবহার করা যেতে পারে (কমপক্ষে ওরাকল 11 জি থেকে )।
যতক্ষণ না বর্তমান ব্লকের মধ্যে কোনও অপারেশন (আপডেট, মোছা বা সন্নিবেশ) সম্পাদিত হয় না, SQL%ROWCOUNT
তা বাতিল হয়ে যায়। তারপরে এটি সর্বশেষ ডিএমএল অপারেশন দ্বারা প্রভাবিত লাইনের সংখ্যার সাথে থাকে:
আমাদের টেবিল ক্লায়েন্ট আছে বলে
create table client (
val_cli integer
,status varchar2(10)
)
/
আমরা এটি এইভাবে পরীক্ষা করব:
begin
dbms_output.put_line('Value when entering the block:'||sql%rowcount);
insert into client
select 1, 'void' from dual
union all select 4, 'void' from dual
union all select 1, 'void' from dual
union all select 6, 'void' from dual
union all select 10, 'void' from dual;
dbms_output.put_line('Number of lines affected by previous DML operation:'||sql%rowcount);
for val in 1..10
loop
update client set status = 'updated' where val_cli = val;
if sql%rowcount = 0 then
dbms_output.put_line('no client with '||val||' val_cli.');
elsif sql%rowcount = 1 then
dbms_output.put_line(sql%rowcount||' client updated for '||val);
else -- >1
dbms_output.put_line(sql%rowcount||' clients updated for '||val);
end if;
end loop;
end;
ফলাফল এতে:
Value when entering the block:
Number of lines affected by previous DML operation:5
2 clients updated for 1
no client with 2 val_cli.
no client with 3 val_cli.
1 client updated for 4
no client with 5 val_cli.
1 client updated for 6
no client with 7 val_cli.
no client with 8 val_cli.
no client with 9 val_cli.
1 client updated for 10