存进去之前的数据类型,使用 N'内容' 来保存,编码后在保存到数据库里面,
insert into table  values (N'中文内容')。
create table #t (chinese nvarchar(10))
declare @str as nvarchar(10)
set @str = N'英国' --传入sql要unicode
insert into #t 
select N'中国' union all --写入要unicode
select N'法国' union all
select @strselect * from #T
/*
chinese    
---------- 
中国
法国
英国(3 row(s) affected)
*/