Text data.

  • I am having a problem inserting the data into a text column. The data comes into 2 string variables which are Varchar(8000), what I want to do is I want to insert the data into a text column by concatinating string 1 and string 2. Is there a way I can do it.

    Thanks,

    MK

     

  • Have you tried:

    UPDATE tablename

    SET columnname = @variable1 + @variable2

    -SQLBill

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

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