WITH < your_alias > AS ( < select_statement > )
SELECT < fieldlist >
FROM < tables, >< your_alias >
WHERE < where_clause > ;
It was quite puzzling to me at first, but I can definitely see
possibilities here. Not only is this approach probably more readable
than using inline views, but according to Oracle this approach is also
much faster.