在sql server中解析Json Value

时间:2017-06-22 01:46:22

标签: json parsing

我正在使用sqlserver 2012.My table(bindings)包含以下数据。

e_id     f_id      value

1001     1         [{"id":85574},{"id":169794},{"id":151336}]')
1002     1         [{"id":85574},{"id":169794}]') 

i want to select e_id and value(parsed value) from the above table.

Sample output.

e_id            value

1001            85574
1001            169794
1001            151336
1002            85574
1002            16974

我试过在中找到使用parsejson函数(userdefined function)     https://www.simple-talk.com/sql/t-sql-programming/consuming-json-strings-in-sql-server/

select StringValue from parsejson('[{"id":85574},{"id":169794},{"id":151336}]')->This query Returns result.

select e_id,(Select stringvalue from parseJSON(v1.value)) from bindings v1 where  v1.value<>'' and v1.f_id=1 

showing error message Subquery returned more than 1 value"

 Below query also.

select (select stringvalue from parseJSON(v1.value)) from bindings v1 where f_id=1

无法解析表中的值。

1 个答案:

答案 0 :(得分:0)

我认为你必须首先在c#中解析服务器端的这个json,然后只在数据库中插入值部分。