combine_hashed_minmax_nested.sql 92 B

123456789
  1. USE plato;
  2. select
  3. key,
  4. min(value),
  5. max(value),
  6. from Input
  7. group by key
  8. order by key;