/* syntax version 1 */ select a, aggregate_list(b), count(*) from plato.Input group by a order by a; select b, aggregate_list(a), count(*) from plato.Input group by b order by b; select c, aggregate_list(a), count(*) from plato.Input group by c order by c; select d, aggregate_list(a), count(*) from plato.Input group by d order by d; select e, aggregate_list(a), count(*) from plato.Input group by e order by e;