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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search with unicode characters in a table.

Status
Not open for further replies.

dymadarlin

Programmer
Jun 26, 2003
41
0
0
CA
I wanna search in a table with unicode characters:

SELECT * FROM `Customers`
WHERE city = 'تهران';


I would use N function if it was MS SQL SERVER, it would be like

SELECT * FROM `Customers`
WHERE city = N'تهران';

How can I do that in MYSQL?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top