PostgreSQL - JSON and JSONB
Given the table
products with a JSON column info containing {"price": 100, "details": {"color": "red"}}, what is the output of this query?SELECT info->'details'->>'color' FROM products;
