I have an oracle function which has an in parameter which is of rowtype of a table, from a select statement i need to pass the current row to this fucntion so that it does some processing and returns a value. Is there a pseudo variable that can be used within the context of a select statement something equivalent to a old and new in trigger.
I would like to do something like
select *,function1(rowtype) from table1
I want to avoid passing multiple paramaters, so the question should be seen in that context.