SQL Query For Insert

  • Hi,

    Pls can anyone tell , How to insert other language text using single SQL Query

  • Try this:

    CREATE TABLE TempTable ( Col1 NVARCHAR(MAX))

    INSERT INTO TempTable ( Col1)

    SELECT CAST ( <other language column> AS NVARCHAR)

    FROM <Your Table Name>

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

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