PostgreSQL - JSON and JSONB
Given a JSONB column
info with value '{"location": {"city": "Boston"}}', why does the query SELECT info #>> '{location,street}' FROM places; return NULL?