Menu

#2 subquery factoring

open
nobody
None
5
2009-06-12
2009-06-12
Anonymous
No

The subquery factoring (aka common table expression) syntax is not supported.

Trivial example:

with
d as (
select sysdate t from dual
)
select t from d;

Discussion


Log in to post a comment.