在FrontBase SQL中连接字符串

时间:2011-08-16 11:09:31

标签: sql database

如何在FrontBase SQL查询中连接两个字符串列?

我尝试了我认为的标准SQL函数:

concat(col1, col2)

但提出了一个错误:

 Semantic error 426. Referenced routine - concat - cannot be resolved.

有什么想法吗?

PS:有人可以将此标记为FrontBase,我似乎没有权利(< 1500 rep)。

更新:在这里找到答案

http://www.analysisandsolutions.com/presentations/portability/slides/concatenation.htm

我似乎无法在我自己的问题中添加答案......

1 个答案:

答案 0 :(得分:2)

SQL92中,双管道用作字符串连接运算符:

'X' || 'Y' ==> 'XY'

(和AFAIK FrontBase符合SQL92标准)