Is it possible to call an Oracle Pipelined Function without specifying TABLE( ) operator, like in the following example?
SELECT * FROM MyFunction()
I don't want to use the following, due to compatibility with SqlServer.
SELECT * FROM TABLE( MyFunction() )
Can anyone help me, please?
Thank you!