select a.name,a.zf,
(select count(*)+1 from t_test b where b.zf > a.zf) zfpm,
a.yuwen,(select count(*)+1 from t_test c where c.yuwen > a.yuwen) yuwenpm 
from t_test a

解决方案 »

  1.   

    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...