Subject Re: [ib-support] How to join two string
Author Helen Borrie
At 03:34 AM 24/01/2003 +0000, you wrote:
>Dear All,
>How to join string ='test' and string = 'content' ?
>I have tried with operator "+", but it's didn't work.

The string concatenation operator is ||

select 'test' || 'content' as mytest from rdb$database

In SQL, '+' is an arithmetic operator.

heLen