How can a Snowflake user access a JSON object, given the following table? (Choose two.)
How can a Snowflake user access a JSON object, given the following table? (Choose two.)
To access a JSON object in Snowflake, the column name is case-insensitive while the element names are case-sensitive. Given the table, accessing 'name' within 'salesPerson' can be done using 'src:salesPerson.name' or 'SRC:salesPerson.name'. Therefore, the correct options are 'src:salesPerson.name' and 'SRC:salesPerson.name'.
https://docs.snowflake.com/en/user-guide/querying-semistructured Important Regardless of which notation you use, the column name is case-insensitive but element names are case-sensitive. For example, in the following list, the first two paths are equivalent, but the third is not: src:salesperson.name SRC:salesperson.name SRC:Salesperson.Name
correct
A is one of the correct
Agree with Ravuri, B&D