bhe
Member
i have a query like:
When i execute the query in a query-window, the results are presented as:
when i double click the .. next to the cursor i get the following Oracle error message: Ora-01001: invalid cursor.
Is it possible to display the results of the cursor?
thanks.
Code:
select column1
, column2
, cursor (select column3
from table2
where table2.table1_id = table1.id
) as column4
from table1`
where ...
;
Code:
value column1, value column2, cursor..
next row, etc.
Is it possible to display the results of the cursor?
thanks.