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!

Standard function - list of strings to table?

John_KDec 10 2018 — edited Dec 10 2018

There is a standard function which is very useful for testing simple scenarios, but I can't for the life remember it! It's in one of the DBMS_* packages and works like this:

select * from table (dbms_something.function('Cheese','Chalk','Apples','Oranges'));

which returns four rows:

Cheese

Chalk

Apples

Oranges

Yes, I know it's possible to do it many others ways (and easily write my own), but there is something that already exists that does this, and I have used it in the past to quickly test things out; I just can't remember what it is!?

This post has been answered by John_K on Dec 10 2018
Jump to Answer
Comments
Post Details
Added on Dec 10 2018
6 comments
741 views