haitao: 用下面这个代码检查一下就知道了 [阅读: 465] 2007-11-09 10:07:37 declare @tb table(f varchar(100)) declare @i int,@n int set @i=1 while @i<128 begin insert @tb values (char(@i)) if exists(select * from @tb where f like '%[-''-z]%') print @i set @i=@i+1 end