admin管理员组

文章数量:1277474

I have the following JSON value coming through in an SQL database table, I need to pull any values selected in the source system, in this case 3 people were selected and therefore I need to output the following value = John Smith, Jane Smith, Tim Baker

JSON String:

[{"label":"John Smith","value":" John Smith "},{"label":"Jane Smith","value":" Jane Smith "},{"label":"Tim Baker","value":" Tim Baker "}]

I can return the first value in the string, but not all three.

本文标签: sqlReturn all values within a JSON stringStack Overflow