この例では、JSON組み合わせメソッドを使用して、CHARACTER SET LATINの2つのJSONオブジェクトを組み合わせる方法を示します。
例では、以前に作成したテーブルを使用します。
/* 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;
結果: 結果はCHARACTER SET LATINのテキストを持つJSONインスタンスです。
edata2.Combine(edata2) --------------------- {"name" : "Lewis","name" : "Lewis"} {"name" : "Lewis","name" : "Lewis"} {"name" : "Lewis","name" : "Lewis"} {"name" : "Lewis","name" : "Lewis"}