Higher Than 75 Marks

Sort by

recency

|

2205 Discussions

|

  • + 0 comments

    select name from students where marks>75 order by right(name,3) case when right(name,3)=right(name,3) then order by ID end name;

  • + 0 comments

    Solution SELECT NAME FROM STUDENTS WHERE MARKS>75 ORDER BY RIGHT(NAME,3),ID;

  • + 0 comments

    MSSQL

    SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY RIGHT(NAME, 3) ASC, ID ASC

  • + 0 comments

    select name from students where marks > 75 order by substring(name,-3), id asc;

  • + 0 comments

    select name from students where marks > 75 order by substr(name, length(name) - 2) asc;