You are viewing a single comment's thread. Return to all comments →
select case when marks>=70 then name else null end as Name, case when marks=100 then 10 else floor((marks/10)+1) end as grade, marks from Students order by grade desc,name; # **
Seems like cookies are disabled on this browser, please enable them to open this website
The Report
You are viewing a single comment's thread. Return to all comments →
Without Using Join