在Firebird 1.5中添加字符串

时间:2015-05-01 11:15:27

标签: sql firebird

这是我要做的......

表名:Message_Actions 专栏:Forward_details

在Forward_detail列中,我有字符串值,如:

EIioT
TIoH
EI

依旧......

我想在每个字符串的末尾添加字母G而不改变现有的

试过:

update Message_actions
set forward_details = forward_details || 'G' ;
没有运气 但是

update Message_actions
set forward_details = 'forward_details' || 'G' ;

结果为forward_detailsG

1 个答案:

答案 0 :(得分:0)

也许你应该使用trunc(forward_details) || 'G'