Is there a way I could search inside a JSON field in MySQL a la NoSQL?
I mean, if I store, let’s say, "{name: 'John', surname: 'Doe', age:'30'}" in a VARCHAR field, could I select and filter it with something like
SELECT my_json_field FROM my_table where my_json_field.name = 'John'
Regards
There is no such thing. MySQL just won’t understand JSON and writing regex matches or anything else is just asking for trouble.