SQLServer高棉语言空检查失败

时间:2018-09-20 14:05:01

标签: sql-server unicode

当尝试将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

请帮助。 预先感谢。

0 个答案:

没有答案