mysql 从JSON字段提取文本

ioekq8ef  于 2024-01-05  发布在  Mysql
关注(0)|答案(1)|浏览(258)

我的查询看起来像:

  1. select
  2. id,
  3. json_extract(flow_settings, '$.email_settings_id') AS email_settings_id
  4. from smsbump.flows
  5. where flows.flow_trigger in ('Synergy/TierExpiryReminder',
  6. 'integrations/swell_tier_earned',
  7. 'integrations/swell_birthday',
  8. 'integrations/swell_points_reminder',
  9. 'integrations/swell_redemption_reminder',
  10. 'integrations/cdp_optin_status_changed',
  11. 'integrations/cdp_redemption_created') and flows.channel in ('email', 'all');

字符串
我的json看起来是这样的:

  1. {
  2. "platform":"shopify",
  3. "flow_type":"predefined",
  4. "cached":false,
  5. "flow":{
  6. "trigger":"integrations\/swell_redemption_reminder",
  7. "triggerOptions":[
  8. ],
  9. "steps":[
  10. {
  11. "id":1,
  12. "positive":2,
  13. "negative":false,
  14. "type":"action",
  15. "settings":{
  16. "notify":"customer",
  17. "ab_testing":{
  18. "enabled":false,
  19. "message_count":2,
  20. "threshold_type":"orders",
  21. "threshold_value":5,
  22. "messages":[
  23. ]
  24. },
  25. "message":"{SiteName}: Hey {FirstName}, we haven't seen you in a while! Did you know you have {YotpoPointsBalance} points as part of our rewards program? That's enough for a discount!\nEvery 100 point =$10\n\nShop and redeem now! {SiteUrl}\n\nReply {StopToOpt}",
  26. "stop_to_opt_out_text":"STOP to opt out",
  27. "discount_code_settings":false,
  28. "recommended_product":[
  29. ],
  30. "type":"sms",
  31. "addingMedia":false,
  32. "mediaPath":"",
  33. "mediaFile":[
  34. ],
  35. "contact_card":false,
  36. "image":"",
  37. "contact_card_data":{
  38. "name":"",
  39. "logo":"",
  40. "path":"",
  41. "message":"{SiteName}: Save our number to your contact list and never miss a special deal from us. Be the first to know about new product launches and more."
  42. },
  43. "event":"integrations\/swell_redemption_reminder",
  44. "active":true
  45. }
  46. },
  47. {
  48. "id":2,
  49. "positive":false,
  50. "negative":false,
  51. "type":"action",
  52. "settings":{
  53. "discount_code_settings":false,
  54. "type":"email",
  55. "personalized_recommended_product":false,
  56. "active":true,
  57. "email_settings_id":3023222
  58. }
  59. }
  60. ],
  61. "name":"Loyalty Redemption Reminder (SMS and Email)",
  62. "status":1,
  63. "id":625727,
  64. "created_user_id":56416521,
  65. "select_values_to_request":[
  66. ]
  67. }
  68. }


所以问题是在执行查询后,email_settings_id对于所有记录都是null。
我还尝试在查询中像$.flow.steps.email_settings_id一样构造路径,但仍然返回null。

EDIT我现在看到的是字段实际上是mediumtext而不是json。有没有办法在查询执行过程中转换它?没有权限修改那个表。

ezykj2lf

ezykj2lf1#

你不能访问email_settings_id,因为它不在顶层,它在数组flow_settings->flow.steps中。
您需要将此JSON数组转换为行,然后使用json_extract()或运算符->检索email_settings_id

  1. SELECT id, element->'$.settings.email_settings_id'
  2. FROM flows
  3. CROSS JOIN JSON_TABLE(
  4. flow_settings->"$.flow.steps",
  5. "$[*]"
  6. COLUMNS(
  7. element JSON PATH "$"
  8. )
  9. ) data;

字符串
Demo here

相关问题