Subject RE: [ib-support] Umm, Concantenate varchar types
Author Christopher P. Boothe
Thanks Luc || Hellen for the quick response.

>
> Christopher,
>
> You have to use || for concatrenating.
>
> ie:
> SELECT
> LAST_NAME || ', ' || FIRST_NAME AS FULL_NAME
> FROM
> SALESMAN
>
> Luc.
>