PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Creazione di una funzione in Postgresql che non restituisce valori composti

Puoi scrivere qualcosa del genere:

SELECT (t2.function_row).id,
       (t2.function_row).cost
FROM (SELECT _tmp_myfunction(t.id) as function_row
     FROM transactions  t ) t2;

Ti darà i campi, invece di righe composte.