Вопрос

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