aggregate_ctx.sql 70 B

12
  1. --!syntax_pg
  2. select string_agg(x,',') from (values ('a'),('b')) a(x);