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.
无法在 HIVE ql 中用作表名别名的关键字
select a.day , a.buyer , b.name ,b.age ,b.id, a.work , a.year from tracker AS a ,caller AS b ;
给
不匹配的输入“AS”期望在“跟踪器”附近出现 EOF
select a.day , a.buyer , b.name ,b.age ,b.id, a.work , a.year from tracker a ,caller b ;
尝试这个
PIG 不支持在其他一些 RDBMS 中使用的带有“AS”关键字的正常别名分配。我想 Rony 的解决方案应该可以正常工作。