MysqlUser-DefinedVariables用户自定义变量SETorDECLARE

MysqlUser-DefinedVariables用户自定义变量SETorDECLARE

在MySQL中,我们可以将一个值或一个查询结果保存的一个用户自定义的变量中,然后在后面的语句在应用。

SET定义变量; SET @var_name := expr [, @var_name = expr ] ....

SET @var_name = expr [, @var_name = expr ] ....

注意: ①这里用 ":=" or "="都行,但是"="在其他statement语句中有相等的意思,容易混淆,有时也会出错。强烈建议用 ":="。 ②在语句里,可以直接用@var_name = expr定义用,不提倡这样,相当于不声明直接用。

下面给出一些例子: 简单的定义,显示 ?

1 2 3 4 5 6 7 mysql> <strong>SET @t1=1, @t2=2, @t3</strong>:=<strong>4;</strong> mysql> SELECT @t1, @t2, @t3, @t4 := @t1+@t2+@t3; +------+------+------+--------------------+ | @t1 | @t2 | @t3 | @t4 := @t1+@t2+@t3 | +------+------+------+--------------------+ | 1 | 2 | 4 | 7 | +------+------+------+--------------------+ Someone use them for rank ?

1 2 SET @pos <strong>:= </strong>0; #这里用等号,感觉像是逻辑判断,结果也不对了 SELECT @pos:=@pos+1 as rank,name FROM players ORDER BY score DESC; print only the 100th users

?

1 2 3 4 5 6 7 8 9 <strong>SET</strong> @counter:=0; <strong>SELECT</strong> users.* <strong>FROM</strong> users <strong>HAVING</strong> (@counter:=@counter+1)%100=0 <strong>ORDER BY</strong> user_id; 保存查询结果值value: ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 SELECT @total := COUNT(*) FROM table_name; # simicolon 分割连个语句 SELECT table_name.id COUNT(*) AS 'count', COUNT(*) / <strong>(SELECT @total)</strong> AS percent FROM table_name, WHERE 1=1 GROUP BY YEAR(birthday) ORDER BY YEAR(birthday) ?

1 注意上面这个SQL语句看起来逻辑清晰,但与下面的语句执行效果和时间都一样(可能MySQL内部优化了) ?

1 2 3 4 5 SELECT table_name.id COUNT(*) AS 'count', COUNT(*) / <strong>(SELECT </strong> ?

1 COUNT(*) ?

1 FROM ?

1 table_name) AS percent ?

1 2 3 4 5 FROM table_name, WHERE 1=1 GROUP BY YEAR(birthday) ORDER BY YEAR(birthday) ?

1 其他一些例子: ?

1 http://www.yhzhan.com/user-defined-variables/ ?

1 疑问: ?

1 这里的变量只能保存一个结果值,如何才能临时保存一个select出的结果集呢。 ?

1 当然简单的方法是创建表/视图; 或者临时表 ,还有好的方法呢? 待研究。 DECLARE声明变量,然后在赋值 ?

1 DECLARE @var_name var_type ?

1 这里举个例子: ?

1 <strong>例1:</strong> ?

1 2 3 4 5 6 7 8 9 10 11 DECLARE @total INT DECLARE @total_distinct INT SELECT @total:=COUNT(lice_no) #using ":=" notation FROM table_name; SELECT @total_distinct:=COUNT( DISTINCT lice_no) #using ":=" noations FROM table_name; SELECT @total - @total_distinct ?

1 <strong>例2:</strong> ?

1 2 3 4 5 6 7 DECLARE @register_count INT; DECLARE @total_count INT; SELECT @register_count := COUNT(1) FROM t1 WHERE id > 10 ; ?

1 2 3 4 5 6 7 SELECT @total_count := COUNT(1) FROM t1 ; SELECT (@register_count * @total_count) AS ratio2 DECLARE 与 SET 区别: DECLARE 必须指定类型,而SET是不用的 SET定义的是用户自定义变量,是Session Sensitive 的; DECLARE 声明的变量一般为局部变量,其有效区间是声明的函数或存储过程中。 定义全局变量应该为 SET GLOBAL @var_name 后者SET @@GLOBAL.var_name