Oracle クエリ条件が json フィールドの値である場合はどうすればよいですか?

 公式サイト紹介:JSON_VALUE(oracle.com)

説明書:

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

説明: testInfo テーブルの json フィールド user をクエリするキーは、id 値が 121 のデータです。

おすすめ

転載: blog.csdn.net/weirdo_world/article/details/123802026