Subject | Re: [firebird-support] Exact syntax to concatenate two fields as one |
---|---|
Author | Uwe Grauer |
Post date | 2004-03-06T12:13:35Z |
Hi Eric,
try select Code1 || "." || Code2 as TheCode from MyTable
Uwe
Erik De Laet wrote:
try select Code1 || "." || Code2 as TheCode from MyTable
Uwe
Erik De Laet wrote:
>
> Hi,
>
> I have two code fields in my table.
> I want to select both of them with a '.' in between as one field.
>
> Something like:
> select Code1 + "." + Code2 as TheCode from MyTable
>
> What is the exact syntax ?
>
> Thanks,
> Erik De Laet