How to search a unicode value in SQL Server passed in parameter -


i have stored procedure accepts unicode value input , perform operation on table.

alter procedure [dbo].[correctiontmfiltered]  (       @search nvarchar(40)  )         print @search       select distinct           trader_firms.tf_id, trader_firms.tf_title                   trader_firms              tf_title @search + '%' 

but query doesn't return result.

hard coded values used n before value returns result.

print statement gives "??"

the value passing 'दि'


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -