Il valore Json può essere costituito da un valore stringa. per esempio.:
postgres=# SELECT to_json('Some "text"'::TEXT);
to_json
-----------------
"Some \"text\""
Come posso estrarre quella stringa come valore di testo postgres?
::TEXT
non funziona. Restituisce json citato, non la stringa originale:
postgres=# SELECT to_json('Some "text"'::TEXT)::TEXT;
to_json
-----------------
"Some \"text\""
Grazie.
PS Sto usando PostgreSQL 9.3