Answers for "storing json in postgres"

SQL
1

update json in postgres

[{“type”: “phone”, “value”: “+1–202–555–0105”}, {“type”: “email”, “value”: “[email protected]”}]

[{“type”: “email”, “value”: “[email protected]”}]
Posted by: Guest on December-07-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