Question

i have list of 100 students with there total marks and names.Based on this mark give rank to each students. i need to find the names of those students whose rank between 10th rank to 20th rank. students having rank 10,11,12...20 in the ascending order.

Was it helpful?

Solution

Try this:

SELECT studentName FROM studentTable ORDER BY totalMarks DESC LIMIT 10, 10;

OTHER TIPS

try this:

 SELECT <name> FROM <tablename>
 WHERE <rankfieldname> BETWEEN 10 AND 20
SELECT `studentName` FROM `studentTable`
WHERE `rank` BETWEEN 10 AND 20;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top