sql >> Database teknologi >  >> RDS >> Oracle

Sådan samler du forskellige værdier fra flere lister ved hjælp af Oracle JSON_OBJECT &JSON_ARRAYAGG

Brug én DISTINCT underforespørgsel til det første par af kolonner, og brug derefter en anden DISTINCT underforespørgsel for det andet par af kolonner og JOIN på den fælles test_col1 :

SELECT JSON_OBJECT (
         'output' VALUE JSON_ARRAYAGG(
           JSON_OBJECT(
             'common'      VALUE c23.test_col1,
             'list'        VALUE c23.list,
             'anotherlist' VALUE c56.anotherlist
           )
         )
       )
FROM   (
         SELECT test_col1,
                JSON_ARRAYAGG(
                  JSON_OBJECT(
                    'key1' VALUE test_col2,
                    'key2' VALUE test_col3
                  )
                ) AS list
         FROM   ( SELECT DISTINCT
                         test_col1, test_col2, test_col3
                  FROM   test_tbl
                  WHERE  test_col4 = 'val7'
         )
         GROUP BY test_col1
       ) c23
       INNER JOIN (
         SELECT test_col1,
                JSON_ARRAYAGG(
                  JSON_OBJECT(
                    'key1' VALUE test_col5,
                    'key2' VALUE test_col6
                  )
                ) AS anotherlist
         FROM   ( SELECT DISTINCT
                         test_col1, test_col5, test_col6
                  FROM   test_tbl
                  WHERE  test_col4 = 'val7'
         )
         GROUP BY test_col1
       ) c56
       ON ( c23.test_col1 = c56.test_col1 )

Udgange:




  1. Skinner slår op efter serialiseret array

  2. Hvordan kan jeg lave tre tabel JOINs i en UPDATE-forespørgsel?

  3. Tillader en bruger at videregive tabelnavn og kolonnenavn, mens SQL-injektion forhindres

  4. PHP &MySQL opdaterer ikke databasen