Answers for "postgres serialize json"

SQL
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