Example: LATIN Combine LATIN - Advanced SQL Engine - Teradata Database

JSON Data Type

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
gzn1554761068186.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1150
lifecycle
previous
Product Category
Teradata Vantageā„¢
The example shows how to use the JSON Combine method to combine two JSON objects of CHARACTER SET LATIN.
The example uses the table(s) created earlier.
/* Result of LATIN combine LATIN is LATIN. */

SELECT MA.edata2.Combine(MB.edata2) 
FROM my_table AS MA, my_table2 AS MB
WHERE MA.eno < 3;

Result: The result is a JSON instance with text in CHARACTER SET LATIN.

edata2.Combine(edata2)
---------------------
{"name" : "Lewis","name" : "Lewis"}
{"name" : "Lewis","name" : "Lewis"}
{"name" : "Lewis","name" : "Lewis"}
{"name" : "Lewis","name" : "Lewis"}