Well, I know there are some similar questions in the forum, but still there is no explicit solution.
I want to add N to a variable to store double byte(Japanese) into db table, but I do not know how to add the N to a variable.
The value is already in the variable @value, which it gets its value(Japanese) automatically from a CSV file.
What I want to do is insert the value into a db table with correct Japanese chars. So I did
declare @finalValue nvarchar(255);
set @finalValue=N@value; --obviously, it is NOT correct.
--insert ........
what should I do for inserting correct @finalValue into table?