gpt4 book ai didi

hadoop - 在许多with语句之后在Hue中创建表

转载 作者:行者123 更新时间:2023-12-02 20:28:24 26 4
gpt4 key购买 nike

我做了一些临时工作后,在顺化创建表时遇到问题。表命令。下面是一个非常高级的示例。.我试图在创建许多临时表之后创建一个表。

我基本上是试图创建最后一个select语句的表,但是我在创建表行和确定最后一个select *表被调用时都遇到了错误。

With TABLEA as (Select * from TEST1.FILEA),

TableB as (Select * from tableA)

Select * from tableB
where TableB.Curr = 'TYPEE'

CREATE TABLE TEST
row format delimited
fields terminated by '|'
STORED AS RCFile
as Select * from TableB

最佳答案

在您的查询中,请遵循以下语法和示例

create table as <your_with_clause_select_query>

例:
create table test as
with tableA as ( select * from test1.fileA)
select * from tableA;

您还可以在CTAS中使用嵌套的select语句。
CREATE TABLE TEST AS
select * from (
select
*
from
test1.fileA
) b
row format delimited fields terminated by '|'
STORED AS RCFile

关于hadoop - 在许多with语句之后在Hue中创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54655749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com