Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Extracting mutiple data items from DB with JSON string format column

Status
Not open for further replies.

mmiah1982

MIS
Nov 6, 2012
16
0
0
GB
Hi,

Just need some assistance if someone can point me in the right direction it would be greatly appreciated.

I have the following table structure

contactID attributes
1234 {"channel":"Web","classification":"Mortgage","customername":"Mike","customerphonenumber":"+44123432","description":"Current Accounts","sentiment":"NEUTRAL"}
1298 {"channel":"Email","classification":"Savings","customername":"Joe","customerphonenumber":"+44345324","description":"Personal Account","sentiment":"POSTIVE"}

I can pull back one value from the attributes string, but require to pull back some others can anyone point me in the right direction in what i need to change in querey below which pulls back description only at the moment, if i wanted to also pull back the sentiment can someone help with the syntax pls :)

Using following

SELECT contactid, json_extract(attributes, '$.description') AS "description"
FROM myTable


Pulls back contactID and description, i'd like to also pull back sentiment value (from attributes column highlighted in red) aswell

Thank you


 
does this work ?
Code:
SELECT 
  contactid, 
  json_extract(attributes, '$.description') AS "description",
  json_extract(attributes, '$.sentiment') AS "sentiment"
FROM myTable
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top