Read and parse JSON in SQL / Teradata
JSON is commonly used in modern applications for data storage and transfers. Pretty much all programming languages provide APIs to parse JSON.
From Teradata version 15.0, JSON shredding functions are added. JSONExtractValue function can be used to extract JSON data from JSON object. NEW JSON can be used to convert string to JSON object.
In Teradata JSON native data type is also supported. Shredding functions allow you to extract vJSON documents up to 16MB in size.
Code snippet
SELECT jsonObj.Name AS Name, jsonObj.JSONExtractValue('$.Value') AS "Value" FROM ( SELECT NEW json('{"Name":"A","Value":2}') AS jsonObj) AS r;
info Last modified by Raymond 6 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.