是否可以使用带有JSON_VALUE的通配符和范围?

时间:2015-02-16 23:07:12

标签: json oracle oracle12c

我目前正在研究使用Oracle 12c的JSON功能的示例,我正在努力了解如何使用JSON_VALUE的通配符和范围。

我使用的example来自2015年1月/ 2月的Oracle Magazine杂志,这是我坚持使用的SQL。

select json_value(t.trans_msg, '$.CheckDetails[0].CheckNumber'), -- works returns 101
       json_value(t.trans_msg, '$.CheckDetails[*].CheckNumber'), -- null returned      
       json_value(t.trans_msg, '$.CheckDetails[0,1].CheckNumber') -- null returned      
 from transactions t
where t.id = 1 

文章提到

  

...要显示所有内容   这些值,Mark使用CheckDetails [*]。 (他可以使用特定的数字   拉特定项 - 例如,CheckDetails [0,2]拉第一个   和第三项......

所以我希望查询的第二行和第三行返回所有CheckNumber值(101和102)。

我正在使用Oracle Database 12.1.0.2.0,以下是需要时的表和插入脚本:

create table transactions(
   id number not null primary key,
   trans_msg clob,
   constraint check_json check (trans_msg is json)
)
/

insert into transactions
(id, 
 trans_msg
 )
 VALUES
 (1,
 '{
       "TransId"       :    1,
       "TransDate"     :    "01-JAN-2015",
       "TransTime"     :    "11:05:00",
       "TransType"     :    "Deposit",
       "AccountNumber" :    123,
       "AccountName"   :    "Smith, John",
       "TransAmount"   :    100.00,
       "Location"      :    "ATM",
       "CashierId"     :    null,
       "ATMDetails"    : {
           "ATMId"       : 301,
           "ATMLocation" : "123 Some St, Danbury CT 06810"
               },
       "WebDetails"    : {
           "URL"    : null
               },
       "Source"    :    "Check",
       "CheckDetails"  : [
                   {
                       "CheckNumber"    : 101,
                       "CheckAmount"    : 50.00,
                       "AcmeBankFlag"    : true,
                       "Endorsed"    : true
                   },
                   {
                       "CheckNumber"    : 102,
                       "CheckAmount"    : 50.00,
                       "AcmeBankFlag"    : false,
                       "Endorsed"    : true
                   }
               ]
   }'
 )
 /

我知道我必须遗漏一些明显的东西!

1 个答案:

答案 0 :(得分:1)

JSON_VALUE旨在返回标量。要返回JSON对象或关系数据,您必须使用JSON_QUERYJSON_TABLE

select json_query(t.trans_msg, '$.CheckDetails[0].CheckNumber' with wrapper)   a,
       json_query(t.trans_msg, '$.CheckDetails[*].CheckNumber' with wrapper)   b,
       json_query(t.trans_msg, '$.CheckDetails[0,1].CheckNumber' with wrapper) c
from transactions t
where t.id = 1;

A       B           C
-----   ---------   ---------
[101]   [101,102]   [101,102]


select id, details
from transactions
cross join json_table
(
    trans_msg, '$.CheckDetails[*]'
    columns
    (
        details path '$.CheckNumber'
    )
);

ID   DETAILS
--   -------
1    101
1    102