Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
689 views
in Technique[技术] by (71.8m points)

database - Are there any functions in MySQL like dense_rank() and row_number() like Oracle?

Are there any functions in MySQL like dense_rank() and row_number() like those provided by Oracle and other DBMS?

I want to generate an id within the query, but in MySQL these functions are not there. Is there an alternative?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Mysql doesn't have them, but you can simulate row_number() with the following expression that uses a user defined variable:

(@row := ifnull(@row, 0) + 1)

like this:

select *, (@row := ifnull(@row, 0) + 1) row_number
from mytable
order by id

but if you're reusing the session, @row will still be set, so you'll need to reset it like this instead:

set @row := 0;
select *, (@row := @row + 1) row_number
from mytable
order by 1;

See SQLFiddle.

dense_rank() is possible but a train wreck; I advise handling that requirement in the app layer.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...