mysql游标更新位置索引与循环计数

时间:2016-11-10 01:59:11

标签: mysql loops cursor

卡车详情表

id  Order_ref_id    tryck_type_ref_id   position_index
1   226                 24                  1
2   226                 24                  2
3   226                 32                  1
4   226                 35                  1
5   226                 35                  2
6   227                 15                  1
7   227                 15                  2
8   228                 10                  1
9   229                 32                  1
10  229                 32                  2

mysql更新位置索引值,如表中所示。每个订单都有多种卡车类型。如果一辆卡车重复订购2次,那么位置指数将为1,2。 所以任何人都可以帮助我... 我尝试使用Cursor ..没有位置索引没有正确更新

1 个答案:

答案 0 :(得分:1)

这很容易在没有光标的情况下完成。你只需要变量:

set @rn := 0;
set @ot := ''
update t
    set position_index = (case when @ot = concat_ws('-', Order_ref_id, tryck_type_ref_id)
                               then (@rn := @rn + 1)
                               when @ot := concat_ws('-', Order_ref_id, tryck_type_ref_id)
                               then @rn := 1
                          end)
    order by id;