зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
18 строки
188 B
Plaintext
18 строки
188 B
Plaintext
sample
|
|
|
|
do
|
|
$$
|
|
declare
|
|
f record;
|
|
g record;
|
|
begin
|
|
for f in (
|
|
select ...
|
|
)
|
|
loop
|
|
select * into g from ...
|
|
where ... f.some_field ...
|
|
end loop;
|
|
end;
|
|
$$;
|