Du kan skrive sådan noget:
SELECT (t2.function_row).id,
(t2.function_row).cost
FROM (SELECT _tmp_myfunction(t.id) as function_row
FROM transactions t ) t2;
Det vil give dig felterne i stedet for sammensatte rækker.
Du kan skrive sådan noget:
SELECT (t2.function_row).id,
(t2.function_row).cost
FROM (SELECT _tmp_myfunction(t.id) as function_row
FROM transactions t ) t2;
Det vil give dig felterne i stedet for sammensatte rækker.