mysql json查询是不是效率比较低?能不能加索引或者有什么办法优化吗?
mysql json查询是不是效率比较低?能不能加索引或者有什么办法优化吗?
查询方式直接用的laravel 查询json的方式
$users = DB::table('users')
->where('preferences->dining->meal', 'salad')
->get();
推荐文章: