在许多 with 语句之后在 Hue 中创建 table
Create table in Hue after many with statements
我在做了一堆临时文件后在 Hue 中创建 table 时遇到问题。 table 命令。下面是一个非常高级的示例。我正在尝试在创建许多临时 table 之后创建一个 table。
我基本上是在尝试创建最后一个 select 语句的 table 但我 运行 在 create table 行和确定什么方面都出错了最后一个 select * table 被调用..
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
我在做了一堆临时文件后在 Hue 中创建 table 时遇到问题。 table 命令。下面是一个非常高级的示例。我正在尝试在创建许多临时 table 之后创建一个 table。
我基本上是在尝试创建最后一个 select 语句的 table 但我 运行 在 create table 行和确定什么方面都出错了最后一个 select * table 被调用..
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