mysql 按字段a排序 并编序列号,字段a值相同的编号相同
Posted 游荡的鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 按字段a排序 并编序列号,字段a值相同的编号相同相关的知识,希望对你有一定的参考价值。
select a.test,b.* from (select @y:[email protected]+1 as test,a.* from (select * from resourcecenter.cm_identify_relation a group by a.issue_party ) a,(select @y:=0) d order by issue_party) a,
resourcecenter.cm_identify_relation b
where a.issue_party=b.issue_party order by b.issue_party
先在表中创建 字段a 的分组排序 并自增序号,
然后使用原来的表 进行根据字段a赋值,并显示加的序号列
以上是关于mysql 按字段a排序 并编序列号,字段a值相同的编号相同的主要内容,如果未能解决你的问题,请参考以下文章