Amazon interview Question | SQL Interview Question Breakdown: Step-by-Step Solution | Advanced SQL

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

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

  • @HARSHRAJ-gp6ve
    @HARSHRAJ-gp6ve 22 วันที่ผ่านมา +1

    with cte as(
    select orderss.*,DENSE_RANK()OVER(PARTITION BY customer_id ORDER BY order_date DESC) as r1 FROM orderss
    ),cte1 as(
    select customer_id,order_amount as latest_order_amount,order_date FROM cte where r1