Skip to content
Advertisement

Return all values from objects using OPENJSON()

Here is my problem: My JSON may vary based on API response and there is no guarantee that “shortTitle”, for example, can be present in my JSON next time when there is a post request. I have to figure how to “loop” (if that’s the correct term) through JSON to get all fieldID and contents without losing any data.

Here is the query:

This query returns fieldID and content only for “data” (results). How can I return fieldID and content for all objects?

Advertisement

Answer

If I understand the structure of the input JSON correctly, you need to parse only nested JSON objects. So, using OPENJSON() with default schema and an additional APPLY operator is a possible solution to your problem. As is explained in the documentation, the OPENJSON() function with default schema returns a table with columns key, value and type, and the type column holds an int value that contains the type of the returned value.

Result:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement