Skip to Content

Turn your connections into holiday cash with our new Customer Referral Program! Learn more

This documentation is for version 4 of App Builder, the new name for Vinyl. Access the Vinyl documentation here.

Concat() mvSQL database function in Jitterbit App Builder

Summary

Returns a string that is the result of concatenating two string values.

Syntax

CONCAT(<string1>, <string2>)

Parameters

string1, string2

A reference to a string column or a literal string.

Returns

The concatenation of the two string values.

Remarks

A shortcut syntax for concatenation is ||.

Examples

CONCAT('Hello', 'World')

or

'Hello' || 'World'

Returns

HelloWorld