Subject | Re: How to concatenate strings in UPDATE statement ? |
---|---|
Author | miroslav_rajcic |
Post date | 2007-06-12T09:03:18Z |
--- In firebird-support@yahoogroups.com, "Sasha" <selectnull@...> wrote:
update projects set code = 'JP' || substring(code from 3)
Regards,
Miroslav
> Try thisThanks everyone for the help. The working version is actually:
> update projects set code = 'JP' || substring(code from 1 for 3)
>
> Firebird Release Notes, page 28
>
> Sasha
update projects set code = 'JP' || substring(code from 3)
Regards,
Miroslav