KPMG SQL Interview Question 2024 | Find out the Studentwise Total Marks for Top 2 Subjects

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 6

  • @RaviSankar-ln3ki
    @RaviSankar-ln3ki 18 วันที่ผ่านมา +1

    Informative.

    • @skilltechath0n
      @skilltechath0n  18 วันที่ผ่านมา +1

      @RaviSankar-ln3ki Glad it was helpful!

  • @amitkumarkumarsinghpiyush323
    @amitkumarkumarsinghpiyush323 11 วันที่ผ่านมา +1

    Bro aap output ki jagah questions likh diya kro jo new h unke liye direct output smjhna thoda tough h

    • @skilltechath0n
      @skilltechath0n  10 วันที่ผ่านมา

      @amitkumarkumarsinghpiyush323 Sure. Will make a note of it. Thank you for the suggestion :)

  • @ishanshubham8355
    @ishanshubham8355 18 วันที่ผ่านมา +1

    select
    student_name,
    sum(marks) as marks
    from
    (
    select *,
    dense_rank() over(partition by student_name order by marks desc) as rnk
    from students
    ) as m
    where rnk

    • @skilltechath0n
      @skilltechath0n  16 วันที่ผ่านมา

      @ishanshubham8355 Continue practicing, Wish you all the success for your endeavours :)