标签: apache ignite
Apache ignite是否允许像sql一样创建临时表
with temptable as (select * from table) select * from temptable;
答案 0 :(得分:2)
似乎不支持此语法。
但是您始终可以使用等效的构造:
SELECT temptable.* FROM (SELECT * FROM table) AS temptable;