0

为什么 charindex 在以下脚本中返回 SQL Server 2008 R2 中的值不是 0?

--drop table #tmp
--go

create table #tmp (field1 nvarchar(50))
go
insert into #tmp values (N'Value 1')
go
insert into #tmp values (N'Value 2')
go
insert into #tmp values (N'Value 3')
go


DECLARE @i   INT;
DECLARE @c   NCHAR;
declare @nvc nvarchar(50) = N'Test Value';

SET @i = 128;


WHILE @i < 256
BEGIN
  SET @i = @i + 1;
  SET @c = nchar(@i);

  if exists (select 1 from #tmp t where charindex (@c, t.field1) > 0)
    print @c;
END

在我的数据库实例上产生的输出(使用的排序规则:SQL_Latin1_General_CP1_CI_AS):

(1 row(s) affected)

(1 row(s) affected)

(1 row(s) affected)
²
³
¹
4

1 回答 1

0

字符 '2' 和 'superscript 2' 都具有相同的 unicode 数值 2,因此我假设 SQL Server 将它们视为基于 unicode 字符的这个组件的等效值,而不仅仅是它的外观。

于 2013-06-28T10:27:08.947 回答