我在mysql表中有一个json列,我想从特定的键中检索数据,其中键在一个键数组中
例如:我的表名是functions这是我的配置列,json数据类型为:
{
"show_image":
{
"label": "Show Client Image",
"ui-elements": [".field-type-imagge"]
},
"view_balance":
{
"label": "View Client Balance",
"ui-elements": ["#profile-page-about-details"]
}
}
我只想为key name“show\u image”选择数据
像这样:
SELECT json_key FROM functionalities WHERE json_key IN ('show_image')
我正在使用MySQL5.7.22
我该怎么做?
谢谢
暂无答案!
目前还没有任何答案,快来回答吧!