Easy: Question 3
user_0571526250
mysql
4 years ago
121 B
4
Indexable
/*Student names with marks greater than 75*/ SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY RIGHT(NAME, 3), ID ASC;
Editor is loading...
/*Student names with marks greater than 75*/ SELECT NAME FROM STUDENTS WHERE MARKS > 75 ORDER BY RIGHT(NAME, 3), ID ASC;