Apahce Ignite sql临时表(如sql)与with函数一起使用?

时间:2018-08-23 17:07:05

标签: apache ignite

Apache ignite是否允许像sql一样创建临时表

with temptable as (select * from table)

select * from temptable;

1 个答案:

答案 0 :(得分:2)

似乎不支持此语法。

但是您始终可以使用等效的构造:

SELECT temptable.* FROM (SELECT * FROM table) AS temptable;