有什么方法可以读取 HIVEquery 中的参数, 而 该参数可以替代 IN 子句。我有以下查询。
Select count (*) from table where id in ('1','2','3','4','5').
有什么方法可以从文本文件中为IN子句提供参数?
使用in_file:将所有ID放入文件中,连续一个ID。
Select count (*) from table where in_file(id, '/tmp/myfilename'); --local file