我有一列 nvarchar ,其中包含阿拉伯字符,我们希望在此列中搜索完整字符串文字。
我在这里找到了一些答案:
select Description from OldTable where Description like N'%[أ-ي]%'
select Description from OldTable where Description does not contain 'Arabic characters'
select Description from OldTable where Description contains 'Arabic characters'
这些答案很有用,但只是找到包含""的所有字符串。特定的阿拉伯语字符,而我们希望在列中找到完整的阿拉伯字符串文本。