Let\'s say I have a JSON column named data in some MySQL table, and this column is a single array. So, for example, data may contain:
You can use JSON extract to search and select data
SELECT data, data->"$.id" as selectdata FROM table WHERE JSON_EXTRACT(data, "$.id") = '123' #ORDER BY c->"$.name"; limit 10 ;