问题:
我的SELECT
语句会产生两个输出,但要求是仅 ID:
我目前的Hive QL输出:
ID player.weight
My current Hive Query:<br></br>
SELECT DISTINCT b.id ,m.weight as weight
FROM batting b
JOIN
Master m on (m.id = b.id)
WHERE b.year = 2005 AND b.triples >4
ORDER BY weight DESC
LIMIT 1;
有没有办法保存我的结果,然后查询第一个ID列?谢谢你的帮助。
答案 0 :(得分:0)
我想我明白了。我需要将整个事件包装为子查询,然后只需选择id。