我在数据库中有一个表,其中有两个列,名为item和S槽。我想要创建另一列(称为cid),该列中填充了数字,以便:
如果可能的话,我只想运行一个这样做的sql查询。
按要求编辑:
| item | slot | what cid should be
| a | x | 1
| a | y | 2
| a | y | 2
| a | z | 3
| b | x | 1
| b | y | 2
| b | q | 3
| c | x | 1
发布于 2016-03-20 18:52:18
您可以通过枚举每个项的插槽来做您想做的事情:
select t.*,
(@cid := if(@i = item, if(@s = slot, @cid, if(@s := slot, @cid + 1, @cid + 1))
if(@i := item and @s := 0, 1, 1)
)
) as cid
from t cross join
(select @i := -1, @cid := 0, @s := 0) param
order by item;
https://stackoverflow.com/questions/36122275
复制