We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Basic Select
- Higher Than 75 Marks
- Discussions
Higher Than 75 Marks
Higher Than 75 Marks
Sort by
recency
|
2357 Discussions
|
Please Login in order to post a comment
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.
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.
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.
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.
SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY SUBSTR(NAME,LENGTH(NAME)-2),ID;