A table, contacts_data, is created and data is inserted into it: create table contacts_data (c object); Insert into contacts_data - select parse_json (' { "customer”: { "address": "509 Kings Hwy, Comptche, Missouri, 4848", "phone": "+1 (999) 407-2274", "email": " [email protected] ", "company": "SNOWFLAKE", "name": { "last": "Person", "first": "Snow" }, "_id": "5730864df388fld653e37e6f" } } '); Which queries will retrieve the first name value as Snow? (Choose two.)
Select an option, then click Submit answer.
- ○ select o[customer][name][first]::string as first_name from contacts_data;
- ○ select o['customer']['name']['first']::string as first_name from contacts_data;
- ○ select o:['customer']:['name']:['first']::string as first_name from contacts_data;
- ○ select 0:Customer.Name.First::string as first_name from contacts_data;
- ○ select 0:customer.name.first::string as first_name from contacts_data;
