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.

有帮助吗?

解决方案

Try this:

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

其他提示

try this:

 SELECT <name> FROM <tablename>
 WHERE <rankfieldname> BETWEEN 10 AND 20
SELECT `studentName` FROM `studentTable`
WHERE `rank` BETWEEN 10 AND 20;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top