zoukankan      html  css  js  c++  java
  • Mysql中实现row_number

        CREATE TABLE `zsl_test` (  
            `ID` INT(10) NULL DEFAULT NULL,  
            `class` INT(10) NULL DEFAULT NULL,  
            `score` INT(10) NULL DEFAULT NULL  
        )  
        COLLATE='utf8_general_ci'  
        ENGINE=InnoDB;     



        insert into zsl_test values (1,1,80);  
        insert into zsl_test values (2,1,80);  
        insert into zsl_test values (3,1,80);  
        insert into zsl_test values (4,1,80);  
        insert into zsl_test values (5,2,80);  
        insert into zsl_test values (6,2,80);  
        insert into zsl_test values (7,2,80);  
        insert into zsl_test values (8,2,80);  
        insert into zsl_test values (9,2,80);  
        insert into zsl_test values (10,2,80);  

        select id,class,score,rank from (  
        select b.id,b.class,b.score,@rownum:=@rownum+1 ,  
        if(@pdept=b.class,@rank:=@rank+1,@rank:=1) as rank,  
        @pdept:=b.class  
        from (  
        select id,class,score from zsl_test order by id   
        ) b ,(select @rownum :=0 , @pdept := null ,@rank:=0) c ) result  
        having rank <3 ;  

  • 相关阅读:
    247. Strobogrammatic Number II 倒过来看也一样的数
    性能测试结果分析
    性能测试文档
    性能测试技术
    性能测试流程
    JMeter(7)插件
    Java同步工具类
    线程池
    死锁
    Lock显示锁
  • 原文地址:https://www.cnblogs.com/thaughtZhao/p/6194575.html
Copyright © 2011-2022 走看看