SQL Interview Question | Genpact

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

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

  • @sameer27nagrare
    @sameer27nagrare 2 วันที่ผ่านมา

    Really Informative video.. I got to learn a lot.. Thanks.👌

    • @codinglake
      @codinglake  2 วันที่ผ่านมา

      Thanks, I'm glad you found it helpful!

  • @KRANTHIKUMARMARADA
    @KRANTHIKUMARMARADA 22 ชั่วโมงที่ผ่านมา

    with cte as (
    select o.*,sum(salary) over (partition by experience order by salary) as cumm from office o)
    --select max(cumm) from cte where experience='Senior' and cumm

  • @kartikeychauhan9285
    @kartikeychauhan9285 วันที่ผ่านมา

    What is the level of this question?
    Easy
    Medium
    Hard

    • @333Stan
      @333Stan วันที่ผ่านมา

      medium

  • @phoenixsandeep
    @phoenixsandeep 2 วันที่ผ่านมา +1

    Using Nested cte's
    I know this is a bit crumpy and lot of lines but just another approach
    With senior as ( select *, sum(salary) over (order by salary asc) AS senior_cum from office where experience = 'Senior'),
    selected_seniors as ( select emp_id, experience, salary from senior where senior_cum

    • @codinglake
      @codinglake  2 วันที่ผ่านมา

      nice one.