Summary: How to use Japanese key word in where condition. For ex:
select * from tbl_Mst_Product_Language where Name = N'闲云舒展'
Here in above query in where condition I have used Japanese keyword which is working fine. But I want to put this value in variable as I need to pass this from c#.
Problem I am facing is where I am trying to put where conditon in variable . For example
declare @test as nvarchar(max)
set @test = '闲云舒展'
select * from tbl_Mst_Product_Language where Name = @test
set @test = '闲云舒展'might be better asset @test = N'闲云舒展'