📜  连接字符串 firebird - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:17.484000             🧑  作者: Mango

代码示例1
The reason is that + is not SQL standard operator for string concatenation. It is ||. Example:
select first_name||' '||last_name from employee;