标签:rom weight 查询 from style sel tab table 递增
在查询出的结果添加顺序递增序号:
SELECT @r:=@r+1,count(1) FROM (SELECT @r:=0) init, [table]
每次查询需要重置@r,所以需要:
(SELECT @r:=0) init
其余的查询跟普通查询一致。
标签:rom weight 查询 from style sel tab table 递增
原文地址:https://www.cnblogs.com/tanshuai1001/p/8777954.html