La valeur Json peut être constituée d'une valeur de chaîne. par exemple.:
postgres=# SELECT to_json('Some "text"'::TEXT);
to_json
-----------------
"Some \"text\""
Comment puis-je extraire cette chaîne en tant que valeur de texte postgres?
::TEXT
ne fonctionne pas. Il renvoie json cité, pas la chaîne d'origine:
postgres=# SELECT to_json('Some "text"'::TEXT)::TEXT;
to_json
-----------------
"Some \"text\""
Merci.
PS J'utilise PostgreSQL 9.3