Re: Table column vales to JSON object keys?

From: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
To: Wells Oliver <wells(dot)oliver(at)gmail(dot)com>
Cc: pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Table column vales to JSON object keys?
Date: 2021-02-11 20:13:02
Message-ID: CAKFQuwYTvbo4AqgY62xLdU=g8FaLFA5Ggr9ZAmtHTCPZTvp=rQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Thursday, February 11, 2021, Wells Oliver <wells(dot)oliver(at)gmail(dot)com> wrote:

> Trying to go from a table like:
>
> g | e | angle | path
> ----+---+--------+----------------------
> g1 | e1 | a1 | http://foo.com/a.mp4
> g1 | e1 | a2 | http://foo.com/b.mp4
> g1 | e1 | a3 | http://foo.com/c.mp4
>
> To a table like this, with a column value per angle as a key.
>
> g | e | obj
> ----+---+---------------------------------------------------
> ------------------------------------------
> g1 | e1 | {"a1": "http://foo.com/a.mp4", "a2": "http://foo.com/b.mp4",
> "a3": "http://foo.com/c.mp4"}
>
> Can't quite get there.
>
>
>
How far can you get?

David J.

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2021-02-11 20:15:35 Re: Table column vales to JSON object keys?
Previous Message Wells Oliver 2021-02-11 20:06:01 Table column vales to JSON object keys?