BEGIN ATOMIC
PostgreSQL中的 Sybase 等价物是什么?
它应该是这样的:
create or replace function my_func()
returns int
as $$
begin
begin atomic
update stetment1;
update stetment2;
update stetment3;
end;
end;
$$ LANGUAGE PLPGSQL;
三个更新语句必须作为一个整体一起成功或失败。