一张test表里存了一个content字段是json类型的,查询该content里manualNo这个字段
select JSON_EXTRACT (test .content, '$.manualNo') from test
如果content是数组格式的,查询第一个字段
select JSON_EXTRACT (test .content, '$[0]') from test
一张test表里存了一个content字段是json类型的,查询该content里manualNo这个字段
select JSON_EXTRACT (test .content, '$.manualNo') from test
如果content是数组格式的,查询第一个字段
select JSON_EXTRACT (test .content, '$[0]') from test