So let's say I have a row that looks like
id json_data
1 { ... }
2 { ... }
3 { ... }
I want to select the rows that have a key which contains a string abc
.
I tried to use something like
SELECT * FROM table1 t where JSON_EXTRACT(t.json_data,...
but wasn't able to complete the query because I wasn't sure how to add this condition.
Any help?