Możesz unnest() tablice, np.:
select id, jsonb_object_agg(tag, count) as tags
from (
select id, unnest(string_to_array(tags, ']')) as tag, count(*)
from my_table
group by 1, 2
) s
group by 1
order by 1
Możesz unnest() tablice, np.:
select id, jsonb_object_agg(tag, count) as tags
from (
select id, unnest(string_to_array(tags, ']')) as tag, count(*)
from my_table
group by 1, 2
) s
group by 1
order by 1
Zastąp wszystkie tabele bazy danych z wyjątkiem jednej danymi z innej bazy danych
Dynamiczne monitorowanie instancji PostgreSQL za pomocą pg_top
Jak wstawić takie rzeczy jak now() -interval '2 minutes' do zapytania PHP PDO?
Narzędzie do konwersji procedury składowanej t-sql (SQL Server) na pgsql (postgre sql)
Transakcja wewnątrz funkcji plpgsql