Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用一个函数并管道它的返回值。我将上述函数称为:
SELECT * FROM TABLE(FUNC(params)) ORDER BY somecolumn;
它以1 x 4表的形式返回结果,我尝试使用游标来检索它们。但是显示一个错误,说游标仅用于字段名或列名,而不用于type。
是否仍然可以使用游标,或者是否有任何其他方式来检索各个字段。
我想这就是你想要的?
SELECT MyTable.Column1, MyTable.Column3, etc FROM TABLE(FUNC(params)) MyTable ORDER BY somecolumn;
要访问特定列,只需为表设置别名。