EY SQL INTERVIEW QUESTION | Daily Targets

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

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

  • @kiranvarma5434
    @kiranvarma5434 2 หลายเดือนก่อน

    Many thanks for increasing the zoom size of the video, it is clear now.

  • @affanskm3530
    @affanskm3530 2 หลายเดือนก่อน +1

    WITH recursive cte as (
    SELECT StartDate as sdt, EndDate, Product,StartTarget, EndTarget FROM Targets
    UNION
    SELECT sdt + INTERVAL 1 DAY as dts, EndDate, Product, StartTarget, EndTarget FROM CTE
    WHERE sdt < EndDate
    ),
    cte1 as (
    SELECT *,FIRST_VALUE(sdt) OVER(PARTITION BY EndDate,product ORDER BY product, sdt, EndDate ) as csdt FROM cte
    )
    SELECT Product,sdt as StartDate, EndDate,
    StartTarget - (datediff(csdt, sdt)*(StartTarget - EndTarget)
    /datediff(csdt,EndDate)) as DailyTarget
    FROM cte1
    ORDER BY product, sdt, EndDate