Giter Club home page Giter Club logo

Comments (9)

rukmanig avatar rukmanig commented on July 30, 2024 2

Hi, you can use the JsonTuple function to get the values, the code snippet to extract the properties 5,6 and 7 is done as follows

@jsonnodes =
SELECT JsonApp.JsonFunctions.JsonTuple(jsonstring, "$..property5", "$..property6", "$..property7") AS json_map
FROM @JSON;

@nodes_exploded = SELECT name, node_value
FROM @jsonnodes
CROSS APPLY
EXPLODE(json_map) AS T(name, node_value);

The snippet above will give you an output as follows
"custom.B1[0].property5", "value 5"
"custom.B1[0].property6" , "value 6"
"custom.B1[0].property7", "value 7"

Please let me know if this helps and if you have any further questions.

from usql.

nibras85 avatar nibras85 commented on July 30, 2024 1

Hi. Any updates regarding this bug?

from usql.

rukmanig avatar rukmanig commented on July 30, 2024 1

Sorry Chad, updated to fix typo in code to call the right variable.

from usql.

rukmanig avatar rukmanig commented on July 30, 2024 1

jsonstring is the string you extracted out of the JSON using the JSONExtractor. I have also published code that parses Json on the github site - please do take a look at https://github.com/Azure/usql/blob/master/Examples/JsonSample/JsonSample/NestedJsonParsing.usql that will give the full script that starts with extracting content from a JSON file and manipulating the data. Please let me know if you have any questions.

from usql.

chadequate avatar chadequate commented on July 30, 2024

Thanks for the reply! What does @b1_property refer to here?

from usql.

chadequate avatar chadequate commented on July 30, 2024

I don't quite understand what jsonstring refers to here. Isn't the input coming from @JSON?

Sorry for the sporadic questioning. I keep getting pulled onto other things :)

from usql.

chadequate avatar chadequate commented on July 30, 2024

I'm able to extract nested objects now. Thanks for all your help!

from usql.

rukmanig avatar rukmanig commented on July 30, 2024

Excellent thanks Chad.

from usql.

GauravSagne avatar GauravSagne commented on July 30, 2024

Hi rukmanig,

I've a nested json for which I've used JsonFunction.JsonTuple() in conjuction with EXPLODE() but that nested json have a sub-properties too. Could you please tell me how to read the sub-properties using JsonFunction.JsonTuple (), please ?

Thanks

from usql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.