Insert Into, Append, Temp Table ?

  • I have two columns, name & keywords

    How can I change the following SQL statement so that it will append data onto the end of the keywords column so that it reads "current info+the new set info below" instead of overwriting the current data ?

    SET KEYWORDS = 'soap, ice, snow'

    WHERE (NAME LIKE '%drink%')

  • Hi ft,

    Try it like this:

    SET KEYWORDS = Keywords + 'soap, ice, snow'

    -Dan B

  • That worked good.

    Thanks for the info.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply