I am new to pl/sql and I got stuck. I have a table consisting of 3 columns: package_uid, csms_package_id and flag. First two columns are filled and the third is empty. Flag column is filled when a procedure is called in a way that procedure compares package_id-s from that table and another table and if they are a match, the flag should be 'YES'. This is my code:
DECLARE
package_uid varchar2(256);
CURSOR abc IS SELECT csms_package_id, PACKAGE_UID, FLAG FROM table1 tpc;
CURSOR defg IS SELECT package_id FROM table2 tpc2;
BEGIN
for i in abc loop
for j in defg loop
begin
if i.CSMS_PACKAGE_ID=j.package_id THEN
i.flag := 'YES' ;
DBMS_OUTPUT.PUT_LINE(i.flag);
end if;
end;
end loop;
end loop;
end;
The output writes 'yes' correct number of times but my table is not updated with 'yes' values. How can I update flag values in the table?