Answers for "storing json in postgres"

SQL
1

update json in postgres

[{“type”: “phone”, “value”: “+12025550105”}, {“type”: “email”, “value”: “jimi.hendrix@gmail.com”}]

[{“type”: “email”, “value”: “janis.joplin@gmail.com”}]
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