PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Postgres:come convertire una stringa json in testo?

In 9.4.4 usando il #>> l'operatore lavora per me:

select to_json('test'::text) #>> '{}';

Per utilizzare con una colonna di tabella:

select jsoncol #>> '{}' from mytable;