- 论坛徽章:
- 0
|
if(paper_id=@paper_id,@total:=@total+1, @total:=1) as temp,
if(paper_id=@paper_id,null, @rank:=1) as temp1,
if(paper_id=@paper_id,null, @paper_id:=paper_id) as temp2,
这个如果能在一个if里处理就好了
发了帖子删不掉了,在这个基础上修改吧
基于上面的想法,我把过程改成了这样
delimiter //
drop procedure if exists show_mark
//
create procedure show_mark()
begin
drop table if exists tmp_order;
create table tmp_order(paper_id int, class_student_id int, score numeric(6,2), order_in_town int);
set @scorenow = 99999;
set @rank = 0;
set @total = 0;
set @paper_id = 0;
insert into tmp_order(paper_id, class_student_id, order_in_town, score)
select paper_id,class_student_id,mrank,mscore from (
select if(paper_id=@paper_id,@total:=@total+1, (@total:=1 and @rank:=1 and @paper_id:=paper_id)) as temp,
paper_id, class_student_id,
if(score<@scorenow,@rank:=@total,@rank:=@rank) as mrank,
(@scorenow:=score) as mscore
from tmp_subject_score
order by paper_id, score desc
) as tmp_rank_tbl;
end;
//
delimiter ;
call show_mark();
[ 本帖最后由 zyrf2001 于 2009-5-26 10:32 编辑 ] |
|