create or replace function test()
returns void as $$
begin
update tbl set col1 = true where col2 = false;
-- now I want to raise exception if update query affected more than 2 rows to rollback the update
end;
$$ language plpgsql;
Comment puis-je sélectionner le nombre de lignes affectées à une variable dans la fonction?
create or replace function test()
returns void as $$
declare
v_cnt numeric;
begin
v_cnt := 0;
update tbl set col1 = true where col2 = false;
GET DIAGNOSTICS v_cnt = ROW_COUNT;
if v_cnt > 1 then
RAISE EXCEPTION 'more than one row affected --> %', v_cnt;
end if;
end;
$$ language plpgsql;