“JSON con PostgreSQL” Código de respuesta

matriz json a cadena en postgresql

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

matriz json a cadena en postgresql

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

JSON con PostgreSQL


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

Respuestas similares a “JSON con PostgreSQL”

Preguntas similares a “JSON con PostgreSQL”

Más respuestas relacionadas con “JSON con PostgreSQL” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código