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中分数排名的代码。

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值