I have a json field in mysql called column_info. Here's an example value:
[{"id": ["132605", "132750", "132772", "132773", "133065", "133150", "133185", "133188", "133271", "133298"]},
{"number": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]},
{"id": ["1", "1", "1", "1", "1", "1", "1", "1", "1", "1"]}
]
Is it possible to do a query that does the following:
keys = ['id', 'number', 'id']
SELECT * FROM `column_info` WHERE JSON(??) = keys