If any of the specified values is numeric, this function converts them to a string and then concatenates them.
Specifies the values to concatenate.
1. |
The following example merges the values and returns "Number of blobs found: 22" CONCAT("Number ",
"of ", "blobs ", "found: ", BlobAnalysis.NumberFound)
|
2. |
The following example returns an array of concatenated strings, where each element displays a formatted coordinate point, "(X, Y)". For example, [(12.0, 15.2), (5.8, 20.7)].
SELECT(PatternMatching.Occurrences, CONCAT("(", TOSTRING(Item.X,
":F1"), ", ", TOSTRING(Item.Y, ":F1"), ")"))
|