The Report

  • + 0 comments

    I have used the following querry,it throws error could someone help me out

    with cte1 as ( Select Name , Grade , Marks from students s left join grades g on s.marks >= g.min_mark and s.marks<=g.max_mark )

    Select case when grade < 8 then 'Null' else Name end ,Grade,marks from cte1 order by grade desc,CASE WHEN Grade >= 8 THEN Name ELSE NULL END ASC, CASE WHEN Grade < 8 THEN Marks ELSE NULL END ASC;