Warning: Undefined array key "HTTP_REFERER" in /www/wwwroot/prod/www.enjoyasp.net/wp-content/plugins/google-highlight/google-hilite.php on line 58
1,Update不仅可以给字段赋值,直接给变量赋值也行 DECLARE @str VARCHAR(50) UPDATE AA SET aa.c3 = ‘hello’,@str = c3 FROM tmp aa WHERE aa.c2 = ‘aa’ 2, 赋值的保留值,即执行 SELECT ,UPDATE给变量赋值,若没有结果,则保留原值。若执行的是count,则变量赋值为0,若执行的是sum,则变量赋值为空,即对于聚合函数,除count返回为0外,其它如sum, max均返回NULL。 执行 SELECT ,UPDATE给变量赋值,若没有结果,则保留原值,对于聚合函数,都是返回有值的,只是对于count,若没有结果,那么计数为0,即返回值是0,而于sum,max若没有结果,那么聚合的结果是null,null也会返回,覆盖原变量值。 3,聚合函数中, SUM/AVG/COUNT中的NULL会被忽略,对sum,avg,还没什么关系,但要注意的是COUNT,NULL被忽略意味着若count(字段),此字段有一行为NULL,则数量会少一行,他忽略的NULL就是()里的字段,若为常量或*,都不是NULL,也就没有忽略可言。 drop table t_count create table t_count ( c1 varchar(10) null, c2 varchar(10) null ) insert into t_count values(null,null) insert into t_count values('a','b') insert into t_count values('a','b') insert into t_count values('c','d') insert into t_count values('c','d') select COUNT(1) from t_count --5 select COUNT(c1) from t_count --4 select COUNT(distinct c1) from t_count --2 --正常 select count(*) from (select distinct c1,c2 from t_count) t --3 --有NULL参与了运算,所以表达式值为NULL select count(distinct c1+c2) from t_count --2 4,当用SELECT,UPDATE赋值时,加个TOP,找到即返回,防止遍历所有行! 注:select top 与 select相同点都会将所有满足条件的数据筛选出来然后进行赋值,top并不是筛选到一条就返回,若是将有满足条件的数据筛选出来后,赋值一个即返回,故赋值select top不会比select 性能提高多少。 DECLARE @username VARCHAR(50),@updateusername VARCHAR(50), @count INT,@sum INT,@max int SET @username = ‘tt’ SET @updateusername = ‘cc’ SET @count = 22 SET @sum = 33 SET @max = 44 SELECT @username = f.UserName FROM frmuser f WHERE 1=2 UPDATE f SET @updateusername = f.username FROM frmuser f WHERE 1=2 SELECT @count= COUNT(1) FROM frmuser f WHERE 1=2 SELECT @sum= SUM(f.ID) FROM frmuser f WHERE 1=2 SELECT @max= max(f.ID) FROM frmuser f WHERE 1=2 SELECT @username –tt SELECT @updateusername –cc SELECT @count –0 SELECT @sum –null SELECT @max –null