mysql 怎么查询json 数组?
比如extra字段 怎么查询第一个等于23
[23,'aaa','测试测试']
User::query()->where(‘extra->0’,23)->first();
这样写不对喃?