How do I select a function result with multiple rows from dual in PL/SQL?
SELECT multipleRowsFunction() AS multiple FROM dual;
or
BEGIN
SELECT multipleRowsFunction() INTO multiple FROM dual;
END;
Are there any alternatives to DUAL for this purpose?