Hi,
I have been writing queries that contain a factored subquery, like:
WITH My_Table AS
(
SELECT *
FROM Table_Name
)
SELECT * FROM My_Table
This works when using SQL+, but not when using PL/SQL developer. Does anybody know if this is a limitation of the software, is it a setting within the...