Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SELECT * WHERE WORD LIKE '%international character%' 1

Status
Not open for further replies.

serializer

Programmer
May 15, 2006
143
SE
I have a table with some mixed content stored in nvarchar. Among the content are chinese and russian characters. I have textbox in a ASP.NET web form. When I enter and search for any chinese or russian text I do not get any results. Any ideas how to solve this?

Thanks!
 
How about:
Code:
SELECT * WHERE WORD LIKE N'%international character%'

Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top