Title: SQL Noob Alert: Help Needed to Retrieve Data from Nested JSON Objects
Hey guys, I'm new to SQL and I'm stuck on something that's probably easy for you veterans. I've got a database with a JSON object containing user info, and it's nested like this: `{ "name": "John", "address": { "street": "123 Main St", "city": "NYC" } }`. I'm trying to write a query to extract the street names, but I'm not sure how to access the nested address object. Can anyone offer some guidance?
Hey guys, I'm new to SQL and I'm stuck on something that's probably easy for you veterans. I've got a database with a JSON object containing user info, and it's nested like this: `{ "name": "John", "address": { "street": "123 Main St", "city": "NYC" } }`. I'm trying to write a query to extract the street names, but I'm not sure how to access the nested address object. Can anyone offer some guidance?