表排序问题。
现有表(rank字段暂时为空)
ID count rank
1 6
2 3
3 7
4 5
... ...
怎样根据 count 字段的大小用排序并用数字表示(最大为1,依次往后)insert into 到表的rank 字段?即有这样的效果:
ID count rank
1 6 2
2 3 4
3 7 1
4 5 3
... ...
求大神指点迷津!!
------解决方案--------------------建立一个临时表
create table tem(idx int auto_increment primary key,id int,count int);
insert into tem(id,count) select id,count from tb order by count desc;
update tem A, tb B set B.rank = A.idx where A.id = B.id;
drop table tem;
------解决方案--------------------http://blog.csdn.net/acmain_chm/article/details/4095531
MySQL中的ROWNUM的实现
MySQL 几乎模拟了 Oracle,SQL Server等商业数据库的大部分功能,函数。但很可惜,到目前的版本(5.1.33)为止,仍没有实现ROWNUM这个功能。 下面介绍几种具体的实现方法.建立实验环境如下mysql> create table tbl ( -> id int primary key, -> col int -> );Que...