Example: LATIN Combine LATIN - Teradata VantageCloud Lake

Lake - Working with SQL

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2025-11-21
dita:mapPath
jbe1714339405530.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
jbe1714339405530
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"}