I have a table in SQL Server where a row contains a Json column - something like this:
ResponseText | RequestId |
---|---|
{"LosUnqCod":0,"LosMidId":23} | 96173722 |
{"LosUnqCod":1,"LosMidId":5} | 96173721 |
I want to have a table in this shape:
LosUnqCod | LosMidId | RequestId |
---|---|---|
0 | 23 | 96173722 |
1 | 5 | 96173721 |
how to open this json?