I am new to using snowflake. I have a table that includes the original and full JSON message from which the table was created. So when I query e.g.
select * from dbo.TradeData
one of the columns is called JSON and contains the complete JSON message for that order. It will include keys which form the columns e..g part of the message in that column is:
"ProdGrp": [
{
"prodID": "Confectionary:Choc",
"prodIDSoruce": "104"
},
how do I adapt my select* from dbo.TradeData query to include the nesting ProdGrp::ProdID as TAXONOMY (col name)? I hope this makes sense. I basically want to include a column into the table which wasn't already there from a JSON format from that table.