doc_view.txt 176 B

12345678910
  1. $f = ($x)->{return $x+1};
  2. select key,min(num) as num from (
  3. select key,$f(0) as `num` from Input1
  4. union all
  5. select key,$f(1) as `num` from Input2
  6. )
  7. group by key
  8. order by key