PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Convertir un tableau d'objets en tableau compatible pour nodejs/pg/unnest

Vous pouvez envoyer votre chaîne JSON telle quelle et laisser PostgreSQL s'en occuper :

update portfolios p
set votes = s.votes
from (
  select (e->>'votes')::int as votes, (e->>'id')::int as id
  from (select (regexp_replace($1, '"\1"', 'g'))::jsonb as jarr) j
  cross join jsonb_array_elements(jarr) e
  ) s
where p.id = s.id;

$1 est [{votes: 5, id: 1}, {votes: 15, id: 1}, {votes: 25, id: 2}]', '([a-z]+) sous forme de chaîne.