Search notes:

Oracle SQL: table(collection)

Within an SQL statement, the expression table(collection) is treated like a table:
select *
from
  table(collection);
This is demonstrated in return a »table« from a function.

See also

In order to get data stored in a table, the select statement is needed.

Index