skip to Main Content

How to use wildcard search by json column type in MySQL

I got three data in MySQL [{"key": "field_1", "value": "test_1"}, {"key": "field_2", "value": "test_2"}] [{"key": "field_1", "value": "1"}, {"key": "field_2", "value": "test_2"}] [{"key": "field_2", "value": "test_2"}, {"key": "field_1", "value": "test_1"}] I need to search data which include "key" = "field_1"…

VIEW QUESTION
Back To Top
Search