Answers for "json and jsonb postgres"

SQL
1

postgres json

UPDATE users SET data = jsonb_set(data, '{name}', '"John"');
Posted by: Guest on November-14-2020
2

json with postgresql

SELECT info ->> 'customer' AS customer,
	info -> 'items' ->> 'product' AS product
FROM orders
WHERE CAST ( info -> 'items' ->> 'qty' AS INTEGER) = 2
Posted by: Guest on October-08-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language