String Coercion

STR(<Expression>) - Coerces value of expression to type string

STR(4)

Evaluates to "4"

STR(4.5)

Evaluates to "4.5"

STR("Hello World")

Evaluates to "Hello World"

STR(MPOINT(3,4,5))

Evaluates to "3, 4, 5"