Hello I have following question:
I am creating some view and I need to call a PL/SQL function from it. I would like to know if there is some difference between these two variants
CREATE OR REPLACE FORCE VIEW TEST_VIEW
AS
SELECT Package_Name.Function_Name(Some argument)
FROM
...
and
CREATE OR REPLACE FORCE VIEW TEST_VIEW
AS
SELECT (SELECTPackage_Name.Function_Name(Some argument) FROM DUAL)
FROM
...
Thanks for advice.