Skip to content
Advertisement

mysql – Search for a key within inconsistent json structure

I know of the functions such as: JSON_SEARCH() and JSON_EXTRACT() etc. This issue is that I am searching for a key in a json string that is not standardized. for example:

and the results could be something like this:

so in this example I want to get john doe with the acctNum of 123. but, also, the location of the acctNum key is different. I have seen here that you can use: JSON_SEARCH(data, $**.acctNum) but I get empty results,

In an ideal world what I would like is:

and receive

also that in the link that is above finding the key acctNum could be extremely nested.

I had tried using the regexp with SELECT * FROM users WHERE data REGEXP '123'; but as you could imagine then the user jane doe will be matched as well

Advertisement

Answer

Search a defined value at any path:

Search a defined value at a defined path:

Search a defined property name and value at any path:

fiddle

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement