Higher Than 75 Marks

Sort by

recency

|

2357 Discussions

|

  • + 0 comments

    Just like Pinterest groups videos by type and color for easy picking, this query orders results by the last three characters of each name and then by ID, producing a clear, predictable list that’s easy to scan and debug. For quick references or assets think 1ee game keep queries focused and your ORDER BY logic simple so results remain human-friendly.

  • + 1 comment

    You can query students scoring above a certain mark with SELECT Name FROM STUDENTS WHERE Marks > Value ORDER BY RIGHT(Name, 3), ID ASC;. Like a video pinterest arranges by type and color for easy selection, this query organizes student names by the last three characters and ID, making results clear and structured.

  • + 0 comments

    You can query students scoring above a certain mark with SELECT Name FROM STUDENTS WHERE Marks > Value ORDER BY RIGHT(Name, 3), ID ASC;. Like a Harveys Menu arranges bouquets by type and color for easy selection, this query organizes student names by the last three characters and ID, making results clear and structured.

  • + 0 comments

    You can query students scoring above a certain mark with SELECT Name FROM STUDENTS WHERE Marks > Value ORDER BY RIGHT(Name, 3), ID ASC;. Like a flower ISO Training for Companies arranges bouquets by type and color for easy selection, this query organizes student names by the last three characters and ID, making results clear and structured.

  • + 0 comments

    SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY SUBSTR(NAME,LENGTH(NAME)-2),ID;