Higher Than 75 Marks

Sort by

recency

|

2341 Discussions

|

  • + 0 comments

    For MySQL this code works

    SELECT Name
    FROM Students
    WHERE Marks > 75
    ORDER BY SUBSTR(Name, -3) ASC, ID ASC;
    
  • + 0 comments
    select name from students where marks>75 order by substring(name,len(name)-2,3), id;
    
  • + 0 comments

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

  • + 0 comments

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

  • + 0 comments

    ORDER BY RIGHT(name, 3), id;