CONCAT() And Columns

2006-01-18 Thread Shaun
Hi, I am trying to update a field so that it retains its contents plus the contents of another column like this: UPDATE MyTable SET Comments = CONCAT(Comments, 'Old_ID_Field = ', Old_ID_Field) WHERE Table_ID = 1; However I just get a blank Comments field, any ideas why this is happening? Than

Re: CONCAT() And Columns

2006-01-18 Thread SGreen
"Shaun" <[EMAIL PROTECTED]> wrote on 01/18/2006 10:57:49 AM: > Hi, > > I am trying to update a field so that it retains its contents plus the > contents of another column like this: > > UPDATE MyTable SET Comments = CONCAT(Comments, 'Old_ID_Field = ', > Old_ID_Field) WHERE Table_ID = 1; > > H