例: JSON_COMPOSEを使用して、テーブルから値を抽出し、JSONオブジェクトを作成 - Teradata Database - Teradata Vantage NewSQL Engine - この例では、JSON_COMPOSEを使用して、テーブルから選択した値からJSONオブジェクトを作成します。

Teradata Vantage™ JSONデータ型

Product
Teradata Database
Teradata Vantage NewSQL Engine
Release Number
16.20
Published
2019年3月
Language
日本語
Last Update
2019-10-29
dita:mapPath
ja-JP/bgi1512081870828.ditamap
dita:ditavalPath
ja-JP/bgi1512081870828.ditaval
dita:id
evi1472243742653
Product Category
Software
Teradata Vantage
JSON_COMPOSEを使用して、テーブルから選択した値からJSONオブジェクトを作成します。
SELECT JSON_Compose(T.company, T.employees)
FROM
 (
  SELECT company, JSON_agg(empID AS id, 
     empName AS name, 
     empAge AS age) AS employees
  FROM emp_table
  GROUP BY company
 ) AS T;
結果:
JSON_Compose
------------
{
  "company" : "Teradata",
  "employees" : [ 
     { "id" : 1, "name" : "Cameron", "age" : 24 },
     { "id" : 2, "name" : "Justin", "age" : 34 }
  ]
}
{
  "company" : "Apple",
  "employees" : [ 
     { "id" : 3, "name" : "Someone", "age" : 24 } 
  ]
}