使用Teradata SQL助手时是否可以在单个请求中构造一个易失表并对该表进行查询?
做类似的事情:
create volatile table table_a as
(select .....
)
with data on commit preserve rows;
;select * from table_a;
我收到错误:
Query Failed. 3932: Only an ET or null statement is legal after a DDL Statement.