CONCAT#
Functionality:#
This Oracle function allows you to concatenate two text stringsParameters:#
STRING1 | the first text string |
STRING2 | the second text string |
Returns: #
TextErrors: #
NoneOperations: #
This function only allows two strings. Multiple strings may also be concatenated using the || (two vertical bars) operator. Example:concat('alpha','bravo') will return alphabravo
'alpha'||'bravo' will also return alphabravo