在英文 sql2005中 比较nvarchar 与 varchar的速度
摘要:
declare @str1 varchar(max);declare @count int;set @count = 0;print 'begin'while @count < 10000000beginset @str1 = @str1 + '*';set @count = @count +1;endprint @str1print 'end'--time usage:00:01:17declare @str1 nvarchar(max);declare @count int;set @count = 0;print 'begin 阅读全文
posted @ 2013-07-26 13:47 Orz.. 阅读(190) 评论(0) 推荐(0)
浙公网安备 33010602011771号