Twitter SQL Interview Question | Three Days Rolling Average | using Window Function & Self Join

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

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

  • @DatacraftingWithSneha
    @DatacraftingWithSneha  3 หลายเดือนก่อน

    Please like and subscribe for more interesting SQL interview questions and answers.🙏

  • @harshitsalecha221
    @harshitsalecha221 3 หลายเดือนก่อน

    SELECT user_id,
    tweet_date,
    ROUND(AVG(tweet_count) OVER(PARTITION BY user_id ORDER BY tweet_date ROWS BETWEEN 2 Preceding AND 0 following),2) as average_3_day_rolling
    FROM tweet_data;

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

    Git Repo?