Perhatikan nilai default untuk kolom qry_count:
CREATE TABLE t (
a INTEGER PRIMARY KEY,
b TEXT,
entered_by INTEGER,
qry_count INTEGER default 0
);
create function select_and_update(parameter text)
returns setof t as $$
update t
set qry_count = qry_count + 1
from (
select a
from t
where b = $1
) s
where t.a = s.a
;
select *
from t
where b = $1
;
$$ language sql;
Sekarang kueri tabel menggunakan fungsi di atas:
select * from select_and_update('a');
Perbarui menurut komentar:
Anda dapat membangunnya secara dinamis dan alih-alih fungsi, cukup bungkus kode sql, apa pun itu, dalam suatu transaksi. Tidak perlu kursor.
begin;
update t
set qry_count = qry_count + 1
from (
select a
from t
where b = 'a'
) s
where t.a = s.a
;
select *
from t
where b = 'a'
;
commit;