table_funcs_spec_aggregation.sqlx 128 B

12345678910
  1. /* postgres can not */
  2. use plato;
  3. --insert into Output
  4. select
  5. key,
  6. max(TablePath()) as table_rec
  7. from Input
  8. group by key
  9. ;