oracle10g支持with as用法么

RT,10G版本支持使用 with as 用法么?报错 ORA-32033是啥意思

oracle10应该支持这样的写法:
with a as (select * from test)
select * from a;
oracle11支持这样的写法:
with c(no,name,address) as
(select id,name,addr from test where id=1 or id=2)
select * from c;
温馨提示:答案为网友推荐,仅供参考