mysql 表tabel1 中有两个字段 ID int,label json类型,现有一条信息 label的值 json 格式如下:
{
"GoodTeam": [
"团队组团",
"散团组团",
"处境组团"
],
"GoodType": [
"员工旅游",
"单位疗休养",
"老年团"
],
"GoodLanguage": [
"普通话",
"英语"
]
}
想要查询表中 label 中 GoodTeam 中的 "团队组团" 的数据,跪求,在线等
相关问题
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
- mySQL alter table on update, current timestamp
select * from tabel where json_extract(label , '$.GoodTeam' )like"%团队组团%"