Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

At what version did the TABLE() keyword for table collection expressions become optional?

User_1871Jun 12 2022

Previously, Table() was necessary:

SELECT *
FROM   TABLE(SYS.ODCIVARCHAR2LIST('a', 'b', 'c'));

COLUMN_VALUE
a
b
c

At some point, Table() became optional:

-—18c
SELECT *
FROM   SYS.ODCIVARCHAR2LIST('a', 'b', 'c');

COLUMN_VALUE
a
b
c

At what version did the TABLE() keyword for table collection expressions become optional?

This post has been answered by mathguy on Jun 13 2022
Jump to Answer

Comments

Post Details

Added on Jun 12 2022
5 comments
338 views