如何在 Dremio 中创建临时 table
how to create a temp table in Dremio
我想在 dremio
中创建一个临时的 table,如下所示
Select ABC 转换成#temp_table
有什么建议吗?
我不认为 DREMIO 明确支持临时表。但是,它确实能够使用 create table as
(CTAS):
根据查询结果动态创建表
create table temp_table as
select ABC;
我想在 dremio
中创建一个临时的 table,如下所示Select ABC 转换成#temp_table
有什么建议吗?
我不认为 DREMIO 明确支持临时表。但是,它确实能够使用 create table as
(CTAS):
create table temp_table as
select ABC;