PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Zapętlanie w wybranym zapytaniu

Czy tablice są dla Ciebie dobre? (SQL Fiddle)

select
    id,
    sum(totalcol) as total,
    array_agg(somecol) as somecol,
    array_agg(totalcol) as totalcol
from (
    select id, somecol, count(*) as totalcol
    from mytable
    group by id, somecol
) s
group by id
;
 id | total | somecol | totalcol 
----+-------+---------+----------
  1 |     6 | {b,a,c} | {2,1,3}
  2 |     5 | {d,f}   | {2,3}

W wersji 9.2 możliwe jest posiadanie zestawu obiektów JSON (Fiddle)

select row_to_json(s)
from (
    select
        id,
        sum(totalcol) as total,
        array_agg(somecol) as somecol,
        array_agg(totalcol) as totalcol
    from (
        select id, somecol, count(*) as totalcol
        from mytable
        group by id, somecol
    ) s
    group by id
) s
;
                          row_to_json                          
---------------------------------------------------------------
 {"id":1,"total":6,"somecol":["b","a","c"],"totalcol":[2,1,3]}
 {"id":2,"total":5,"somecol":["d","f"],"totalcol":[2,3]}

W 9.3 z dodatkiem lateral , pojedynczy obiekt (Skrzypce)

select to_json(format('{%s}', (string_agg(j, ','))))
from (
    select format('%s:%s', to_json(id), to_json(c)) as j
    from
        (
            select
                id,
                sum(totalcol) as total_sum,
                array_agg(somecol) as somecol_array,
                array_agg(totalcol) as totalcol_array
            from (
                select id, somecol, count(*) as totalcol
                from mytable
                group by id, somecol
            ) s
            group by id
        ) s
        cross join lateral
        (
            select
                total_sum as total,
                somecol_array as somecol,
                totalcol_array as totalcol
        ) c
) s
;
                                                                to_json                                                                
---------------------------------------------------------------------------------------------------------------------------------------
 "{1:{\"total\":6,\"somecol\":[\"b\",\"a\",\"c\"],\"totalcol\":[2,1,3]},2:{\"total\":5,\"somecol\":[\"d\",\"f\"],\"totalcol\":[2,3]}}"

W wersji 9.2 możliwe jest również posiadanie pojedynczego obiektu w bardziej zawiły sposób przy użyciu podzapytań zamiast lateral



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. docker compose:postgresql utwórz bazę danych, przekaż użytkownika i nadaj uprawnienia

  2. Jak utworzyć tablicę Postgresql JSONB w indeksie tablicy?

  3. Zarządzanie wysoką dostępnością w PostgreSQL – Część II:Menedżer replikacji

  4. Błąd rozwiązywania:znaleziono dosłowny znak nowej linii w danych w Postgresie?

  5. Jak ustawić limit czasu połączenia w SQLAlchemy?