配置单元中的ParseExecution错误

vxbzzdmp  于 2021-06-26  发布在  Hive
关注(0)|答案(1)|浏览(189)

在配置单元中执行select语句时出错。
错误:org.apache.hive.service.cli.hivesqlexception:编译语句时出错:失败:parseexception行1:33无法识别“”附近的输入
查询样本:;使用cte1 as(从表1中选择*)、cte2 as(从表2中选择*)、cte3 as(从表3中选择*)、select*from cte2 join cte3 on cte2.col1=cte3.col1 join cte1 on cte1.col1=cte2.col1;

xlpyo6sf

xlpyo6sf1#

如果缺少别名引用,请在别名后面添加keywrand“as”

with cte1 as  ( select * from table1) , cte2 as ( select * from table2) , cte3 as ( select * from table3) select * from cte2 join cte3 on cte2.col1 = cte3.col1 join cte1 on cte1.col1 = cte2.col1

在hive 1.1中测试

相关问题