There is a mysql 5.7 data table in which one of the fields in the JSON format, for example, is:
{"string":"info","array":[1,2,3,4,5]} To search for a string, in the column JSON which contains "info" the following structure is used:
SELECT * FROM table WHERE json->"$.string" = 'info' Question: how to select the rows of the table, in the json array of which there are certain values, for example, 1 and 3?