According to Apache Hive Wiki (https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DML), multi inserts "minimize the number of data scans required. Hive can insert data into multiple tables by scanning the input data just once (and applying different query operators) to the input data".
But, is it possible to apply joins to these multiple inserts?
I'm asking because I cannot apply the join in the common FROM statement, because I need to subset the data of the second table taking into account different parameters for each "first" table.
Thanks in advance!