select * from MyTable where EmpName = N'احمد'
我在MS访问中使用此查询来检索基于Farsi(波斯语)语言字符的数据,但它给出了语法错误。 任何帮助都将是我的荣幸。谢谢,
答案 0 :(得分:1)
这对我来说是Access 2007
SELECT Table1.Field1
FROM Table1
WHERE (((Table1.Field1)="احمد"));
因此,您不需要像在MS SQL Server中那样使用unicode前缀。