“Postgres json à la chaîne” Réponses codées

Postgres json à la chaîne

SELECT CAST( json_column AS TEXT ) FROM table
or
SELECT json_column::TEXT FROM table
Colorful Constrictor

Array JSON à chaîne dans PostgreSQL

	SELECT string_agg(trim(tdata::text, '"'), ', ') from jsonb_array_elements(CAST('[1 , 2]' as jsonb)) tdata
Envious Earthworm

Array JSON à chaîne dans PostgreSQL

SELECT 
	ID
	,(
		SELECT string_agg(trim(JsonString::text, '"'), ', ')
		FROM jsonb_array_elements(JsonData->'Name') JsonString
	) AS StringArray
FROM   tbl_TestJsonArray;
Envious Earthworm

JSON avec PostgreSQL


        
            
        
     SELECT info ->> 'customer' AS customer,
	info -> 'items' ->> 'product' AS product
FROM orders
WHERE CAST ( info -> 'items' ->> 'qty' AS INTEGER) = 2
Alas

Réponses similaires à “Postgres json à la chaîne”

Questions similaires à “Postgres json à la chaîne”

Plus de réponses similaires à “Postgres json à la chaîne” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code