Nota il valore predefinito per la colonna 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;
Ora interroga la tabella usando la funzione precedente:
select * from select_and_update('a');
Aggiorna in base al commento:
Puoi compilarlo in modo dinamico e al posto di una funzione basta avvolgere il codice sql, qualunque esso sia, in una transazione. Non c'è bisogno di cursori.
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;