Answers for "concatenate string firebird"

1

concatenate string firebird

The reason is that + is not SQL standard operator for string concatenation. It is ||. Example:
select first_name||' '||last_name from employee;
Posted by: Guest on April-15-2020

Browse Popular Code Answers by Language