Hive with...as...的用法
with...as...也叫做子查询部分,语句允许hive定义一个sql片段,供整个sql使用
简介
with...as...
需要定义一个sql片段,会将这个片段产生的结果集保存在内存中,
后续的sql均可以访问这个结果集和,作用与视图或临时表类似.
语法限制
with...as...
必须和其他sql一起使用(可以定义一个with
但在后续语句中不使用他)with...as...
是一次性的
with...as...
的完整格式是这样的
-- with table_name as(子查询语句) 其他sql
with temp as (
select * from xxx
)
select * from temp;
只定义不实用
with temp as (
select * from xxx
)
select * from othertable;
同级的多个temp之间用,
分割with
只需要一次,as
后的子句必须用()
,
with temp1 as (
select * from xxx
),temp2 as (
select * from xxx
)
select * from temp1,temp2;
with...as...
当然是可以嵌套的,此处举一个简单例子
with temp2 as (
with temp1 as (
select * from xxx
)
select * from temp1
)
select * from temp2;
with...as...
只能在一条sql中使用
with temp1 as (
select * from xxx
)
select * from temp1;
select xxx from temp1; -- error! no table named temp1;
语句的优点
- 提高代码可读性(结构清晰)
- 简化sql,优化执行速度(
with
子句只需要执行一次)