What should I do if the Oracle query condition is the value in the json field?

 Official website introduction: JSON_VALUE (oracle.com)

Instructions:

select * from testInfo where json_value(user,'$.id')='121';

Description: The key of querying the json field user in the testInfo table is the data with an id value of 121.

Guess you like

Origin blog.csdn.net/weirdo_world/article/details/123802026