Click here to Skip to main content
15,906,574 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

I have table named

Tbl_Employee

HTML
No    Name (nvarchar(max))
1     મારશલ
2     કેમરુન
3     બ્રાઉન



now i want to search like

SQL
select * from Tbl_Employee where Name = 'કેમરુન'


or

SQL
select * from Tbl_Employee where Name like '%' + 'કેમરુન' + '%'


but doesn't return any record.
how can i accomplish it.

If any other idea to manage gujarati please help

Thanks in Advance. Thanks a lot
Posted

select * from Tbl_Employee where Name =N 'કેમરુન'


You can use N character to search Unicode from database.

I hope this will help you...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900