Subject | Re: [ib-support] Concatination? |
---|---|
Author | Doug Chamberlin |
Post date | 2001-08-14T18:47:57Z |
At 8/14/2001 01:59 PM (Tuesday), Joe Martinez wrote:
instead of +.
update mytable set mycolumn = ('100' || mycolumn) where...
>I'm trying to find an SQL statement that will prepend a string to aIf the column is a CHAR or VARCHAR try the concatenation operator, ||,
>field for a certain set.
instead of +.
update mytable set mycolumn = ('100' || mycolumn) where...