I would like to create a virtual table with a similar syntax
SELECT 'sk: ' || #1 || ' ; pdf: ' || #2
FROM TABLE('1, 2', '3, 4')
And obtain something like this
SELECT 'sk: ' || '1' || ' ; pdf: ' || '2'
FROM DUAL
UNION
SELECT 'sk: ' || '3' || ' ; pdf: ' || '4'
FROM DUAL
I can create Objects.
I’ve seen something useful here: Oracle: split string to rows
But that was an Array and now I need a Matrix
You can do this: