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.
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.