1

我有两个使用 ORC 压缩的表,并且使用 TEZ 作为执行引擎。Table_a 包含超过 900k 条记录,table_b 包含 1700 万条记录。这个查询需要更长的时间我已经等了 2 天,但查询执行没有完成。我在这个查询中做错了什么。

select min(up.id) as comp002uniqueid, min(cp.product_id) as p_id 
from 
(select * from table_a where u_id is null) up ,  table_b cp 
where  cp.title like concat('% ',up.productname,' %') 
group by up.productname;
4

0 回答 0