Subject | RE: [Firebird-general] Expression Evaluation not supported + ' ' + |
---|---|
Author | Dmitry Yemanov |
Post date | 2003-06-25T07:48:13Z |
Ghanshyam,
select firstname || ' ' || lastname as name from Employee
P.S. Please post your support questions to the appropriate forum
(firebird-support).
Dmitry
> When i am trying to execute the following query, i am getting theThe standard SQL syntax for a concatenation is the double pipe symbol:
> error "Expression Evaluation not supported"
>
> select firstname + ' ' + lastname as name from Employee
>
> I think firebird doesn't support + ' ' + syntax.
> If it is so, then is there any UDF or any other way for the same.
select firstname || ' ' || lastname as name from Employee
P.S. Please post your support questions to the appropriate forum
(firebird-support).
Dmitry