Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在dremio中创建一个如下的临时表
选择 ABC 到 #temp_table
有什么建议吗?
我不认为 DREMIO 明确支持临时表。但是,它确实能够使用create table as(CTAS)根据查询结果动态创建表:
create table as
create table temp_table as select ABC;