mysql @value := 使用

mysql中的变量赋值

1.使用set赋值

set @a := 1;
set @a = 1;
set @a = column from table where ...;

2.使用select赋值

select @a := null;
select @a := column from table where ...;

在set中赋值号可以是 ':=' 也可以是 '=' ,但是 在select中只能是 ':=' 。

select中使用 '=' 时,代表判断,如

# Write your MySQL query statement below
select score,
cast(
    (case
 when @preScore = Score then @rank
 when @preScore := Score then @rank := @rank + 1 
 when Score <= 0 then @rank := @rank + 1
 end) as signed
) as Rank
 from Scores,(select @rank := 0,@preScore := null) r 
 order by Score DESC;

是说如果变量@preScore的值等于当前记录的字段Score值,则@rank保持不变

第二个when是先把Score赋值给@preScore,由于这不是判断条件,所有直接进行then后面的,即@rank+1

第三个是判断后再看是否要进行then

另外在from后的表中,要使用select赋值,把2个变量初始化。

 

mysql cast()函数:

cast( column as 格式),将字段的格式进行转换

格式如下:

CHAR[(N)] 字符型 
date  date型
datetime datetime型
decimal float型
signed  int型
time time型

如cast(date as signed) 将 date字段转换为int型

 

 

上图是LeetCode中分数排名的代码。

posted @ 2020-04-20 22:03  为之。  阅读(134)  评论(0编辑  收藏  举报