PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment retourner une table par type de ligne en PL/pgSQL

Ce que vous avez jusqu'à présent semble bon. L'ingrédient manquant :types polymorphes .

CREATE OR REPLACE FUNCTION change_val(_tbl_type anyelement)
  RETURNS SETOF anyelement  -- problem solved
  LANGUAGE plpgsql AS
$func$
BEGIN
   RETURN QUERY EXECUTE format(
      'UPDATE %s SET val = 2 RETURNING *;'
     , pg_typeof(_tbl_type))
     );
END
$func$;

Appel (important) :

SELECT * FROM change_val(NULL::some_tbl);

db<>violon ici
Ancien sqlfiddle

Voir (dernier paragraphe) :