Higher Than 75 Marks

Sort by

recency

|

2151 Discussions

|

  • + 0 comments

    SELECT name FROM students WHERE marks > 75 ORDER BY RIGHT(name, 3) ASC, id ASC;

    at last id ASC we wirte used to In case there are multiple students with the same last three characters in their names

  • + 0 comments

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

    make sure to select my sql server

  • + 1 comment

    SELECT Name,marks,ID FROM STUDENTS WHERE Marks > 75 ORDER BY RIGHT(Name,3), ID asc ; whats wrong with this query

  • + 0 comments

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

  • + 0 comments

    to honest 'discussions' section should be renamed as answers section we come here to get a hint like what concept to use and not to see answers