当尝试将unicode文本与空字符串进行比较时,只有高棉语会失败。 以下是我要执行的操作:
create table #temp(data_value nvarchar(100))
--Mandarin Language
insert into #temp(data_value)
select N'万世巨星'
--Empty string
insert into #temp(data_value)
select N''
--Khmer Language
insert into #temp(data_value)
select N'កុងហ៊្វូផេនដា ៣'
select * from #temp
--BELOW is fine/correct
select * from #temp
where data_value is null
--BELOW check fails for Khmer language only
select * from #temp
where data_value =''
drop table #temp
请帮助。 预先感谢。