CONCAT

Purpose

This function returns the concatenation of a number of strings.

Syntax

concat::=

Concat

Usage Notes

  • This function is equivalent to the concatenation operator ||. For more information, refer to the Concatenation Operator (||) section.

Example

SELECT CONCAT('abc','def') CONCAT;