mysql 怎么查询json字段的数据

一张test表里存了一个content字段是json类型的,查询该content里manualNo这个字段

select JSON_EXTRACT (test .content, '$.manualNo') from test

如果content是数组格式的,查询第一个字段
select JSON_EXTRACT (test .content, '$[0]') from test

你可能感兴趣的:(mysql 怎么查询json字段的数据)