How to call table functions
Call table functions in FROM clause.SELECT * FROM TABLE( schemaName.functionName(parameters) ) AS t1Note: It does Not...
Call table functions in FROM clause.
SELECT * FROM TABLE( schemaName.functionName(parameters) ) AS t1
Note: It does Not work as following style.
SELECT * FROM ( TABLE( schemaName.functionName(parameters) ) ) AS t1


